/* Show it is fixed to the top */
body {
	    font-family: Tahoma, Verdana, Segoe, sans-serif;
	    overflow-x: hidden;
}

#footer {
    background: #222222;
    border-bottom: 1px solid #2c2c2c;
}

#footer li {
    font-size: 14px;
}

#footer .footer-column {
    border-right: solid 1px #454545;
}

#footer i {
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    cursor: pointer !important;
    color: #b2b2b2;
}

.footer-link {
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.footer-link:hover {
    color: rgb(237, 48, 48) !important;
}

.footer-post {
    border-bottom: solid 1px #454545;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    cursor: pointer !important;
}

.footer-post:hover .footer-icon {
    color: rgb(237, 48, 48) !important;
}

.footer-post:hover .footer-link {
    color: rgb(237, 48, 48) !important;
}

.bg-cover {
    background: url("../img/cover.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height:100%;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
}

.bg-dark-cover {
	    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
	    z-index: 0;
}

#cookie-banner {
	    position: fixed;
	    bottom: 0;
	    left: 0;
	    right: 0;
	    background: #82bfc7;
	    color: #fff;
	    padding: 20px;
	    display: none;
	    z-index: 9999;
}

.cookie-banner-content {
	    max-width: 1100px;
	    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

.banner-overlay {
	    position: relative;
}

.banner-content {
	    max-width: 680px;
	    top: clamp(6rem, 18vh, 11rem);
	    padding-right: 1rem;
}

.bg-black {
    background: #141414;
}

.text-primary {
    color: rgb(237, 48, 48) !important;
}

.text-primary-2 {
    color: rgb(2, 22, 96) !important;
}

.text-primary-3 {
    color: rgb(39, 189, 190) !important;
}

.text-light-gray {
    color: #888888 !important;
}

.bg-primary-2 {
    background: rgb(2, 22, 96) !important;
}

.rounded-icon-nav {
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.rounded-icon-nav:hover {
    color: rgb(237, 48, 48) !important;
    border-color: white;
    background: white;
}

.icon-small {
    text-align: center;
    width: 38px !important;
    height: 38px !important;
}

.icon-large {
    text-align: center;
    width: 85px !important;
    height: 85px !important;
}

.icon-xlarge {
    text-align: center;
    width: 105px !important;
    height: 105px !important;
}

.navbar-light>.nav-item {
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
    padding: 8px;
}

.navbar-light>.nav-item:first-child {
    padding-left: 0px;
}

.navbar-light>.nav-item:after {
    display: block;
    content: '';
    border-bottom: solid 3px rgb(237, 48, 48);
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}

.navbar-light>.nav-item:hover:after {
    transform: scaleX(1);
}

.navbar-light>.nav-item:hover .nav-link {
    color: rgb(237, 48, 48) !important;

}

.navbar-light-hover {
    color: rgb(237, 48, 48) !important;
    background-color: #25579A;
}


.nav div.navbarCollapse {
    height: 65px;
    float: right;
}

.nav div.navbarCollapse ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav div.navbarCollapse ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 3rem;
}

.nav div.navbarCollapse ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 65px;
    font-size: 2.4rem;
}

.nav div.navbarCollapse ul li a:hover {
    color: #00E676;
}


#navbar {
    overflow: hidden;
    background-color: #333;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky+.content {
    padding-top: 60px;
}

.btn-outline-white {
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    color: black;
    background-color: white;
    border-color: white;
}

.btn-check:focus+.btn-outline-white,
.btn-outline-white:focus {
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .5)
}

.btn-check:active+.btn-outline-white,
.btn-check:checked+.btn-outline-white,
.btn-outline-white.active,
.btn-outline-white.dropdown-toggle.show,
.btn-outline-white:active {
    color: black;
    background-color: white;
    border-color: white;
}

.btn-check:active+.btn-outline-white:focus,
.btn-check:checked+.btn-outline-white:focus,
.btn-outline-white.active:focus,
.btn-outline-white.dropdown-toggle.show:focus,
.btn-outline-white:active:focus {
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .5)
}

.btn-outline-white.disabled,
.btn-outline-white:disabled {
    color: white;
    background-color: transparent
}

.btn-primary-2 {
    color: #fff;
    background-color: rgb(2, 22, 96);
    border-radius: 24px;
}

.btn-primary-2:hover {
    color: #fff;
    background-color: rgb(2, 22, 96);
    border-color: #0a58ca
}

.btn-outline-primary {
    color: rgb(237,48,48);
    border-color: rgb(237,48,48);
    border-radius: 24px;
}

.btn-outline-primary:hover {
    color: white !important;
    background-color: rgb(237,48,48);
    border-color: rgb(237,48,48);
}

.btn-outline-primary-2 {
    color: rgb(2, 22, 96);
    border-color: rgb(2, 22, 96);
    border-radius: 24px;
}

.btn-outline-primary-2:hover {
    color: white !important;
    background-color: rgb(2, 22, 96);
    border-color: rgb(2, 22, 96);
}

.btn-outline-primary-3 {
    color: rgb(39, 189, 190);
    border-color: rgb(39, 189, 190);
    border-radius: 24px;
}

.btn-outline-primary-3:hover {
    color: white !important;
    background-color: rgb(39, 189, 190);
    border-color: rgb(39, 189, 190);
}

.cursor-normal {
    cursor: auto !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.special-card:hover .special-separator {
    opacity: 1;
    background-color: rgb(2, 22, 96);
}

.special-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e4e9f2;
    border-radius: 1.25rem;
    box-shadow: 0 14px 34px rgba(10, 29, 68, 0.08);
}

.special-card .card-header {
    padding-top: 1rem;
}

.special-card .card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.5rem;
}

.special-card .card-title {
    line-height: 1.3;
}

.special-card .card-footer {
    margin-top: auto;
    padding: 0 0 1.5rem;
    text-align: center;
}

.special-card .card-footer .btn-primary-2 {
    min-width: 12rem;
}

.special-card:hover .special-icon {
    color: white !important;
    background: rgb(2, 22, 96) !important;
}

.special-services:hover .special-icon {
    color: white !important;
    background: rgb(237, 48, 48) !important;
}

.special-team:hover .special-icon {
    color: rgb(2, 22, 96) !important;
}

.special-hr:hover .special-icon {
    color: white !important;
    background: rgb(39, 189, 190) !important;
}

.special-services,
.special-hr {
    gap: 1rem;
}

.special-services > div:last-child,
.special-hr > div:last-child {
    flex: 1 1 auto;
}

.special-separator {
    height: 8px;
}

.separator-expand {
    width: 6px;
    height: 6px;
    background: rgb(237, 48, 48);
    border-radius: 50%;
}

.special-team:hover .separator-expand {
    content: '';
    width: 150px;
    height: 2px;
    background: rgb(2, 22, 96);
    border-radius: 0;
    -webkit-transition: width 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}

#scrollToTop {
	    display: none;
	    position: fixed;
    bottom: 30px;
    right: 40px;
    z-index: 99;
    font-size: 22px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
}

#preview-colors {
    color: #2D3664;
    color: #2FA1AE;
    color: #C8395F;
    color: #25579A;
    color: #C6E2F4;
    color: #E9F3FB;
    color: #57ADBA;
    color: #D5E8EC;
    color: #E9F3F1;
    color: #CF6378;
    color: #EFD1D0;
    color: #F9EEED;
    color: #59595B;
    color: #F1F3F2;
	    color: #FFFFFF;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	    header .container,
	    #navbar .container-sm,
	    section .container-sm,
	    footer .container-sm {
	        padding-left: 1.5rem;
	        padding-right: 1.5rem;
	    }

	    #banner-section {
	        min-height: 100svh !important;
	        height: auto !important;
	    }

	    .banner-overlay {
	        min-height: calc(100svh - 112px);
	        display: flex;
	        align-items: center;
	    }

	    .banner-content {
	        position: static !important;
	        transform: none !important;
	        max-width: 42rem;
	        padding: 4.5rem 0 3.5rem;
	    }

	    .banner-content h1 {
	        font-size: clamp(2.3rem, 4.8vw, 3.2rem);
	        line-height: 1.12;
	    }

	    .row {
	        --bs-gutter-x: 1.5rem;
	    }

	    .special-card {
	        margin-left: 0 !important;
	        margin-right: 0 !important;
	    }

	    .special-card .card-body,
	    .special-card .card-footer,
	    #footer .nav-item,
	    #footer .footer-link {
	        overflow-wrap: anywhere;
	    }

	    .special-card .card-footer .px-5 {
	        padding-left: 1.25rem !important;
	        padding-right: 1.25rem !important;
	    }

	    .icon-large {
	        width: 76px !important;
	        height: 76px !important;
	    }

	    .icon-xlarge {
	        width: 92px !important;
	        height: 92px !important;
	    }

	    .special-services,
	    .special-hr {
	        align-items: flex-start !important;
	    }

	    .special-services .btn,
	    .special-hr .btn {
	        flex-shrink: 0;
	    }

	    #services-preview-section img,
	    #about-us-section img,
	    #careers-section img {
	        display: block;
	        width: 100%;
	        max-width: 100% !important;
	        height: auto;
	        margin-left: auto !important;
	        margin-right: auto !important;
	    }

	    #about-us-section .about-logo-grid {
	        display: grid;
	        grid-template-columns: repeat(2, minmax(0, 1fr));
	        gap: 0.75rem;
	        justify-content: center !important;
	        justify-items: center;
	        width: fit-content;
	        margin-left: auto;
	        margin-right: auto;
	    }

	    #about-us-section .text-end,
	    #about-us-section .text-start,
	    #careers-section .text-end,
	    #register-section .text-end {
	        text-align: center !important;
	    }

	    #about-us-section .about-logo-grid img {
	        width: 100%;
	        max-width: 9.5rem !important;
	        margin: 0 !important;
	    }

	    #register-section .btn {
	        width: 100%;
	        max-width: 24rem;
	    }

	    #footer .footer-column,
	    #footer .row > div {
	        border-right: 0 !important;
	        padding-left: 1.5rem !important;
	        padding-right: 1.5rem !important;
	    }

	    .footer-post {
	        display: flex;
	        align-items: center;
	        justify-content: space-between;
	        gap: 0.75rem;
	    }

	    .footer-post .footer-link {
	        flex: 1 1 auto;
	    }

	    #footer .float-start,
	    #footer .float-end {
	        float: none !important;
	    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	    header .container,
	    #navbar .container-sm,
	    section .container-sm,
	    footer .container-sm {
	        padding-left: 1.75rem;
	        padding-right: 1.75rem;
	    }

	    #banner-section {
	        min-height: 100svh !important;
	        height: auto !important;
	    }

	    .banner-overlay {
	        min-height: calc(100svh - 112px);
	        display: flex;
	        align-items: center;
	    }

	    .banner-content {
	        position: static !important;
	        transform: none !important;
	        max-width: 46rem;
	        padding: 5rem 0 4rem;
	    }

	    .banner-content h1 {
	        font-size: clamp(2.5rem, 4.2vw, 3.4rem);
	        line-height: 1.1;
	    }

	    .row {
	        --bs-gutter-x: 1.75rem;
	    }

	    .special-card {
	        margin-left: 0 !important;
	        margin-right: 0 !important;
	    }

	    .special-card .card-body,
	    .special-card .card-footer,
	    #footer .nav-item,
	    #footer .footer-link,
	    #section-form label,
	    #section-form p {
	        overflow-wrap: anywhere;
	    }

	    .special-card .card-footer .px-5 {
	        padding-left: 1.5rem !important;
	        padding-right: 1.5rem !important;
	    }

	    #services-preview-section img,
	    #about-us-section img,
	    #careers-section img {
	        display: block;
	        width: 100%;
	        max-width: min(100%, 30rem) !important;
	        height: auto;
	        margin-left: auto !important;
	        margin-right: auto !important;
	    }

	    #services-preview-section .col.col-lg-6,
	    #careers-section .col.col-lg-6 {
	        display: flex;
	        align-items: center;
	        justify-content: center;
	    }

	    #about-us-section .about-logo-grid {
	        display: grid;
	        grid-template-columns: repeat(2, minmax(0, 10rem));
	        gap: 0.75rem;
	        justify-content: center;
	        justify-items: center;
	        width: fit-content;
	        margin-left: auto;
	        margin-right: auto;
	    }

	    #about-us-section .about-logo-grid-end {
	        justify-content: center;
	    }

	    #about-us-section .about-logo-grid-start {
	        justify-content: center;
	    }

	    #register-section .text-end {
	        text-align: right !important;
	    }

	    #about-us-section .about-logo-grid img {
	        width: 100%;
	        max-width: 10rem !important;
	        margin: 0 !important;
	    }

	    #register-section .btn {
	        width: 100%;
	        max-width: 24rem;
	    }

	    #footer .footer-column,
	    #footer .row > div {
	        padding-left: 1.5rem !important;
	        padding-right: 1.5rem !important;
	    }

	    .footer-post {
	        display: flex;
	        align-items: center;
	        justify-content: space-between;
	        gap: 0.75rem;
	    }

	    .footer-post .footer-link {
	        flex: 1 1 auto;
	    }

	    #footer .float-start,
	    #footer .float-end {
	        float: none !important;
	    }
}

@media (max-width: 767.98px) {
	    #banner-section {
	        min-height: 100svh !important;
	        height: auto !important;
	    }

	    header .container,
	    #navbar .container-sm,
	    section .container-sm,
	    footer .container-sm {
	        padding-left: 1rem;
	        padding-right: 1rem;
	    }

	    header .col-md-3 {
	        width: 100%;
	        justify-content: center !important;
	    }

	    .navbar-collapse {
	        margin-top: 0.75rem;
	        padding-bottom: 0.5rem;
	    }

	    .navbar-nav .nav-link {
	        padding-top: 0.65rem;
	        padding-bottom: 0.65rem;
	    }

	    .banner-overlay {
	        min-height: calc(100svh - 110px);
	        display: flex;
	        align-items: center;
	    }

	    .banner-content {
	        position: static !important;
	        transform: none !important;
	        padding: 4rem 0 3rem;
	        max-width: 100%;
	    }

	    .banner-content h1 {
	        font-size: clamp(1.9rem, 7vw, 2.6rem);
	        line-height: 1.15;
	    }

	    .banner-content .btn {
	        width: 100%;
	        max-width: 20rem;
	    }

	    .row {
	        --bs-gutter-x: 1.25rem;
	    }

	    .special-card {
	        margin-left: 0 !important;
	        margin-right: 0 !important;
	    }

	    .special-card .card-body,
	    .special-card .card-footer {
	        overflow-wrap: anywhere;
	    }

	    .special-card .card-footer .px-5 {
	        padding-left: 1rem !important;
	        padding-right: 1rem !important;
	    }

	    .icon-large {
	        width: 68px !important;
	        height: 68px !important;
	    }

	    .icon-xlarge {
	        width: 84px !important;
	        height: 84px !important;
	    }

	    .special-services,
	    .special-hr {
	        align-items: flex-start !important;
	    }

	    .special-services .btn,
	    .special-hr .btn {
	        flex-shrink: 0;
	    }

	    #services-preview-section img,
	    #about-us-section img,
	    #careers-section img {
	        display: block;
	        margin-left: auto !important;
	        margin-right: auto !important;
	        max-width: min(100%, 28rem);
	    }

	    #careers-section img {
	        width: 100%;
	        max-width: 100% !important;
	        height: auto;
	    }

	    #about-us-section .about-logo-grid {
	        display: grid;
	        grid-template-columns: repeat(2, minmax(0, 1fr));
	        gap: 0.5rem;
	        justify-content: center !important;
	        justify-items: center;
	        width: fit-content;
	        margin-left: auto;
	        margin-right: auto;
	    }

	    #about-us-section .text-end,
	    #about-us-section .text-start,
	    #careers-section .text-end {
	        text-align: center !important;
	    }

	    #about-us-section .about-logo-grid img {
	        width: 100%;
	        max-width: 8.5rem !important;
	        margin: 0 !important;
	    }

	    #register-section .btn,
	    #section-form button,
	    .cookie-banner-content .btn,
	    #team-section .btn-primary-2 {
	        width: 100%;
	    }

	    #register-section .text-end {
	        text-align: left !important;
	    }

	    #team-section .card-footer,
	    #footer .nav-item,
	    #footer .footer-link,
	    #section-form label,
	    #section-form p {
	        overflow-wrap: anywhere;
	    }

	    #footer .footer-column,
	    #footer .row > div {
	        border-right: 0 !important;
	        padding-left: 1rem !important;
	        padding-right: 1rem !important;
	    }

	    .footer-post {
	        display: flex;
	        align-items: center;
	        justify-content: space-between;
	        gap: 0.75rem;
	    }

	    .footer-post .footer-link {
	        flex: 1 1 auto;
	    }

	    #footer .float-start,
	    #footer .float-end {
	        float: none !important;
	    }

	    #footer .nav-item img,
	    #footer .nav-item a {
	        display: inline-block;
	    }

	    #scrollToTop {
	        right: 16px;
	        bottom: 16px;
	    }
}
