@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body, html {
    font-family: 'Inter', sans-serif;
    position: relative;
    font-size: 16px;
}

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

/* BUTTONS */
.btn.btn-primary {
    font-weight: 600;
    font-size: 0.9rem;
    background: #5075a1;
    border-color: #5075a1;
    color: #fff;
    border-radius: 0.35rem;
    padding: 0.75rem 1.5rem;
    transition: 0.15s ease all;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: #1F487E;
    border-color: #1F487E;
    box-shadow: none;
}
.btn.btn-primary:not(:disabled):not(.disabled):active {
    transform-origin: center;
    transform: scale(0.965);
    background: #1F487E;
    border-color: #1F487E;
    box-shadow: rgba(10,10,10,0.15) 0 0.2rem 0.2rem;
}
.btn.btn-secondary {
    font-weight: 600;
    font-size: 0.9rem;
    background: #1D3461;
    border-color: #1D3461;
    color: #fff;
    border-radius: 0.35rem;
    padding: 0.75rem 1.5rem;
    transition: 0.15s ease all;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
    background: #2f549d;
    border-color: #2f549d;
    box-shadow: none;
}
.btn.btn-secondary:not(:disabled):not(.disabled):active {
    transform-origin: center;
    transform: scale(0.965);
    background: #2f549d;
    border-color: #2f549d;
    box-shadow: rgba(10,10,10,0.15) 0 0.2rem 0.2rem;
}
.btn.btn-primary.btn-sm,
.btn.btn-secondary.btn-sm {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

/* HEADER */
.navbar-light {
    background: #fff !important;
    padding: 0.5rem 0;
    position: relative;
    z-index: 99;
}
.navbar .navbar-brand {
    line-height: 1.1;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar .navbar-brand img {
    margin-top: 5px;
    margin-bottom: 5px;
    height: 35px;
    display: inline-block;
    vertical-align: middle;
}
.navbar .navbar-brand strong {
    font-weight: bold;
    color: #13202e;
    font-size: 1.25rem;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: -1px;
}
.navbar .navbar-brand span {
    font-weight: normal;
    font-size: 0.75rem;
    color: #7a7a7a;
    display: inline-block;
    vertical-align: middle;
}
.navbar .nav-item .nav-link {
    font-weight: 600;
    color: #13202e;
    margin-left: 1rem;
    font-size: 0.9rem;
    transition: 0.15s ease all;
    position: relative;
}
.navbar .nav-item .nav-link:hover,
.navbar .nav-item.active .nav-link:not(.button) {
    color: #5075a1;
}
.navbar .nav-item .nav-link:not(.button):after {
    position: absolute;
    top: -0.8rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 10%;
    height: 5px;
    background: #5075a1;
    content: ' ';
    transition: 0.35s ease all;
    opacity: 0;
}
.navbar .nav-item .nav-link:not(.button):hover:after,
.navbar .nav-item.active .nav-link:not(.button):after {
    opacity: 1;
    width: calc(100% - 1rem);
}
.navbar .nav-item .nav-link.button {
    background: #5075a1;
    color: #fff;
    border-radius: 0.35rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: 1.5rem;
}
.navbar .nav-item .nav-link.button:hover {
    background: #1F487E;
}
.navbar .nav-item .nav-link.button:active {
    transform-origin: center;
    transform: scale(0.965);
    background: #1F487E;
    box-shadow: rgba(10,10,10,0.15) 0 0.2rem 0.2rem;
}

/* MAIN */
.main {
    padding: 12rem 0;
    background: url("../img/main-bg.jpg") center no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
}
.main:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    content: ' ';
    z-index: 0;
    opacity: 0.2;
}
.main .container {
    position: relative;
    z-index: 1;
}
.main h1 {
    line-height: 1.1;
}
.main.v2 {
    background: url("../img/prix-confort-bg.jpg") center no-repeat;
    background-size: cover;
}
.main.v2 h1 strong {
    display: block;
    text-transform: capitalize;
}
.main.v3 {
    background: url("../img/prix-sociaux-bg.jpg") center no-repeat;
    background-size: cover;
}
.main.v3 h1 strong {
    display: block;
    text-transform: capitalize;
}
.main .btn strong {
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
}
.main .btn span {
    font-weight: normal;
    opacity: 0.75;
    margin-left: 0.5rem;
    padding-left: 0.9rem;
    border-left: 1px solid rgba(255,255,255,0.35);
    display: inline-block;
    vertical-align: middle;
}

/* ABOUT */
.about {
    padding: 2.5rem 0;
    background: #5075a1;
    position: relative;
}
.about h3 {
    font-weight: bold;
    color: #fff;
}
.about p {
    color: rgba(255,255,255,0.75);
    margin: 0;
}
.about .about-item {
    margin-top: 1.5rem;
    border-right: 1px solid rgba(0,0,0,0.1);
    height: calc(100% - 1.5rem);
    padding-right: 15px;
}
.about .about-item img {
    width: 3rem;
    height: 3rem;
    filter: brightness(0);
    margin: 0 0 1rem 0;
    opacity: 0.25;
}
.about .about-item h4 {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

/* POURQUOI */
.pourquoi {
    padding: 5rem 0;
}
.pourquoi h3 {
    font-weight: 600;
    color: #13202e;
}
.pourquoi .pourquoi-item {
    position: relative;
    padding: 2.5rem 2.5rem 2.5rem 7.5rem;
    background: #f5f5fa;
    margin-top: 30px;
    height: calc(100% - 30px);
    border-radius: 0.5rem;
}
.pourquoi .pourquoi-item img {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    width: 3rem;
    height: 3rem;
}
.pourquoi .pourquoi-item h4 {
    display: block;
    font-weight: 600;
    color: #13202e;
    font-size: 1.25rem;
}
.pourquoi .pourquoi-item p {
    margin: 0;
    color: #13202e;
}

/* TESTIMONIALS */
.reviews {
    display: block;
    text-align: center;
}
.reviews .review-box {
    border: 1px solid #eee;
    border-radius: 1rem;
    padding: 5rem;
    background: #fff;
    position: relative;
    z-index: 2;
}
.reviews .review-box p {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2.5rem 0;
}
.reviews .review-box .review-stars img {
    width: 1rem;
    display: inline-block;
    vertical-align: middle;
    filter: grayscale(1);
}
.reviews .review-people .review-person {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2rem;
    filter: grayscale(1);
    opacity: 0.25;
    transition: 0.25s ease all;
    cursor: pointer;
    user-select: none;
}
.reviews .review-people .review-person:hover {
    opacity: 1;
}
.reviews .review-people .review-person:active {
    transform-origin: center;
    transform: scale(0.95);
}
.reviews .review-people .review-person.active {
    opacity: 1;
    filter: none;
}
.reviews .review-people .review-person img {
    display: inline-block;
    vertical-align: middle;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.25rem;
}
.reviews .review-people .review-person span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
}

/* PROCESS */
.comment-proceder {
    padding: 5rem 0 5rem 0;
    background: #f5f5fa;
    position: relative;
    z-index: 0;
}
.comment-proceder h3 {
    font-weight: 600;
    color: #13202e;
}
.comment-proceder p {
    margin: 0;
}
.comment-proceder .step-box {
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
    border-radius: 0.5rem;
    background: #fff;
    height: 100%;
    position: relative;
}
.comment-proceder .step-box .step-number {
    font-weight: bold;
    font-size: 4rem;
    color: #5075a1;
}
.comment-proceder .step-box .step-icon {
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: 2.25rem;
    right: 1.5rem;
}
.comment-proceder .step-box p {
    font-weight: 600;
    font-size: 0.95rem;
    color: #13202e;
}
.comment-proceder .step-box .btn.btn-link {
    font-size: 0.8rem;
    font-weight: bold;
    color: #5075a1;
    text-align: left;
    padding: 0;
}
.comment-proceder .step-box .btn.btn-link:after {
    content: ' ';
    width: 0.4rem;
    height: 0.4rem;
    display: inline-block;
    vertical-align: middle;
    border-right: 2px solid #5075a1;
    border-bottom: 2px solid #5075a1;
    transform-origin: center;
    transform: rotate(-45deg) translateY(-3px) translateX(-3px);
    margin-left: 0.75rem;
}

/* PRICING */
.prix {
    position: relative;
    padding: 0 0 5rem 0;
    background: #f5f5fa;
}
.prix.v2 {
    padding: 2.5rem 0;
}
.prix .pricing-box {
    background: #fff;
    box-shadow: rgba(10,10,10,0.1) 0 0.25rem 0.25rem;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.prix .pricing-box .pricing-name h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #13202e;
    margin: 0;
}
.prix .pricing-box .pricing-name span {
    font-weight: bold;
    color: #13202e;
    margin: 0.5rem 0;
    display: block;
}
.prix .pricing-box .pricing-features {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.prix .pricing-box .pricing-features li {
    display: block;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}
.prix .pricing-box .pricing-features li:before {
    position: absolute;
    top: 0.45rem;
    left: 0;
    width: 0.7rem;
    height: 0.35rem;
    border-bottom: 3px solid #13202e;
    border-left: 3px solid #13202e;
    transform-origin: center;
    transform: rotate(-45deg);
    content: ' ';
}
.prix .pricing-box .pricing-features li small {
    display: block;
}
.prix .pricing-box .pricing-features li a {
    color: #13202e;
    font-weight: bold;
    text-decoration: underline;
}
.prix .pricing-box .pricing-price {
    display: block;
    padding-top: 1rem;
    margin-top: auto;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.prix .divider {
    width: 1px;
    height: 100%;
    background: rgba(10,10,10,.075);
    margin: auto;
}

/* Clients */
.clients {
    padding: 2.5rem 0;
    background: #f2f3f4;
}

.clients .client-box {
    position: relative;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: end;
    flex-direction: column;
    transition: 0.15s ease all;
    box-shadow: rgba(10,10,10,0.1) 0 0.25rem 0.25rem;
    border-radius: 1rem;
    padding: 2rem;
}

.clients .client-box:hover {
    box-shadow: rgba(10, 10, 10, 0.3) 0 5px 5px;
}

.clients .client-box .client-name {
    display: block;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.clients .client-box .client-name h1 {
    font-weight: bold;
    color: #1f1f1f;
    font-size: 22px;
    letter-spacing: -1px;
    margin: 0;
}

.clients .client-box .client-thumbnail {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.clients .client-box .client-thumbnail img {
    height: 500px;
    width: 100%;
}

.clients .client-box .client-visit {
    padding-top: 25px;
}

/* CALL TO ACTION */
.cta-1 {
    padding: 10rem 0;
    background: url("../img/main-bg-2.jpg") center no-repeat;
    background-size: cover;
    position: relative;
}
.cta-1.v2 {
    background: url("../img/main-bg-3.jpg") center no-repeat;
    background-size: cover;
}
.cta-1:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    content: ' ';
    z-index: 0;
    opacity: 0.2;
}
.cta-1 .container {
    position: relative;
    z-index: 1;
}
.cta-1 h3 {
    line-height: 1.1;
    color: #fff;
    font-size: 2.5rem;
    margin: 0 0 1.5rem 0;
}

/* SOLUTIONS */
.solutions {
    padding: 2.5rem 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.solutions h3 {
    font-weight: bold;
    color: #13202e;
}
.solutions .service {
    display: block;
    text-align: center;
    border-right: 1px solid #eee;
}
.solutions .service img {
    width: 4rem;
    height: 4rem;
}
.solutions .service h4 {
    font-weight: bold;
    color: #5075a1;
    font-size: 1rem;
    margin: 0.5rem 0 0 0;
}

/* SERVICES */
.services {
    position: relative;
    padding: 2.5rem 0;
    background: #f5f5fa;
}
.services .box {
    display: block;
    text-decoration: none;
}
.services .box img {
    width: 3rem;
    height: 3rem;
}
.services .box h4 {
    font-weight: bold;
    color: #13202e;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.25rem;
}
.services .box p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(0,0,0,0.5);
}

/* FOOTER */
footer.page-footer {
    padding: 2.5rem 0;
    background: #13202e;
}
footer.page-footer .logo {
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    text-decoration: none;
    display: block;
    position: relative;
    padding-left: 3.5rem;
}
footer.page-footer .logo img {
    height: 35px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    filter: brightness(0) invert(1);
}
footer.page-footer .logo strong {
    font-weight: bold;
    color: #fff;
    font-size: 1.25rem;
    display: block;
    letter-spacing: -1px;
}
footer.page-footer .logo span {
    font-weight: normal;
    font-size: 0.75rem;
    color: #7a7a7a;
    margin: 0.25rem 0 0 0;
    display: block;
}
footer.page-footer hr {
    margin: 2.5rem 0;
    border-color: #444;
}
footer.page-footer p {
    font-size: 0.8rem;
    color: #999;
}
footer.page-footer .contact-item {
    display: block;
    position: relative;
    padding-left: 2.75rem;
    font-size: 0.8rem;
}
footer.page-footer .contact-item img {
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    filter: brightness(0) invert(1);
}
footer.page-footer .contact-item span {
    display: block;
    color: #999;
}
footer.page-footer .contact-item strong {
    display: block;
    color: #fff;
}

/* OUR SERVICES */
.nos-services {
    padding: 2.5rem 0;
    background: #f5f5fa;
    position: relative;
}
.nos-services h3 {
    font-weight: bold;
    color: #13202e;
}
.nos-services .service-box {
    margin-top: 1.5rem;
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
    background: #fff;
    border-radius: 0.5rem;
    height: calc(100% - 1.5rem);
    display: block;
    text-decoration: none;
    overflow: hidden;
}
.nos-services .service-box img {
    width: calc(100% + 3rem);
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    height: 200px;
    object-fit: cover;
}
.nos-services .service-box h4 {
    font-size: 1rem;
    color: #13202e;
    font-weight: 600;
    padding-right: 15%;
}
.nos-services .service-box .service-price {
    font-weight: 400;
    color: #7a7a7a;
}

/* SERVICE SCREEN */
.service-screen {
    padding: 5rem 0;
    position: relative;
}
.service-screen h3 {
    font-weight: bold;
    color: #13202e;
}
.service-screen .service-screen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}
.service-screen.v2 .service-screen-bg {
    left: auto;
    right: 0;
}

/* SERVICE DETAILS */
.service-details {
    padding: 5rem 0;
    background: #f5f5fa;
}
.service-details h3 {
    font-weight: bold;
    color: #13202e;
}
.service-details .details-box {
    display: block;
    position: relative;
}
.service-details .details-box h4 {
    color: #5075a1;
    font-weight: bold;
    font-size: 1.25rem;
}
.service-details .details-box ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.service-details .details-box ul li {
    display: block;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.25rem;
}
.service-details .details-box ul li:before {
    position: absolute;
    top: 0.6rem;
    left: 0;
    width: 0.7rem;
    height: 0.15rem;
    background: #999;
    content: ' ';
}
.service-details .details-box ul li:after {
    position: absolute;
    top: 0.6rem;
    left: 0;
    width: 0.7rem;
    height: 0.15rem;
    background: #999;
    transform-origin: center;
    transform: rotate(90deg);
    content: ' ';
}
.service-details.v2 {
    background: #5075a1;
    color: #fff;
}
.service-details.v2 h3 {
    color: #fff;
}
.service-details.v2 .start-box {
    padding: 2.5rem;
    border-radius: 0.5rem;
    background: #1F487E;
    text-align: center;
}
.service-details.v2 .start-box h4 {
    font-weight: bold;
    font-size: 1.5rem;
}
.service-details.v2 .start-box .btn {
    margin-top: 1rem;
}

/* LOGIN SCREEN */
.login-screen {
    padding: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    height: auto;
    position: relative;
    background: url("../img/main-bg.jpg") center no-repeat;
    background-size: cover;
}
.login-screen:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #5075a1;
    content: ' ';
    z-index: 0;
    opacity: 0.925;
}
.login-screen .container {
    position: relative;
    z-index: 1;
}
.login-screen .logo {
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    text-decoration: none;
    display: block;
    position: relative;
}
.login-screen .logo img {
    height: 35px;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}
.login-screen .logo strong {
    font-weight: bold;
    color: #fff;
    font-size: 1.25rem;
    display: block;
    letter-spacing: -1px;
}
.login-screen .logo span {
    font-weight: normal;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    margin: 0.25rem 0 0 0;
    display: block;
}
.login-screen h1 {
    font-weight: bold;
    color: #fff;
    margin: 2rem 0 0 0;
    font-size: 2rem;
    line-height: 1;
    max-width: 70%;
}
.login-screen p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin: 1rem 0;
}
.login-screen p a {
    color: inherit;
    text-decoration: underline;
}
.login-screen .form-group label {
    font-weight: bold;
    color: #fff;
    display: block;
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
}
.login-screen .form-group .form-control {
    padding: 1rem;
    height: auto;
    background: rgba(0,0,0,0.125);
    color: #fff;
    border-color: transparent;
    transition: 0.15s ease all;
}
.login-screen .form-group .form-control:focus {
    background: rgba(0,0,0,0.25);
    color: #fff;
    box-shadow: rgba(10,10,10,0.1) 0 0.325rem 0.325rem;
}
.login-screen .alert.alert-danger {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
    font-weight: bold;
    border-radius: 1rem;
}

/* GALLERY */
.galerie {
    padding: 2.5rem 0;
    background: #f5f5fa;
}
.galerie h2 {
    font-weight: bold;
    margin-top: 0;
    color: #13202e;
}
.galerie .galerie-post {
    display: block;
    position: relative;
    margin-top: 30px;
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: rgba(0,0,0,0.05) 0 0.25rem 0.25rem;
    overflow: hidden;
    transition: 0.15s ease all;
}
.galerie .galerie-post:hover {
    transform-origin: center;
    transform: scale(1.025);
}
.galerie .galerie-post.inactive {
    filter: grayscale(1) blur(2px);
    opacity: 0.75;
}
.galerie .galerie-post .galerie-thumbnail {
    position: relative;
    width: calc(100% + 3rem);
    margin: -1.5rem -1.5rem 0 -1.5rem;
    display: block;
}
.galerie .galerie-post .galerie-thumbnail img {
    width: 100%;
    object-fit: cover;
}
.galerie .galerie-post .galerie-title {
    font-weight: bold;
    font-size: 1.2rem;
    color: #13202e;
    margin: 1.5rem 0 0 0;
    display: block;
}
.galerie .galerie-post .galerie-website {
    color: #5075a1;
    font-weight: bold;
    font-size: 0.9rem;
}

/* CONTACT BOXES */
.contact-boxes {
    position: relative;
    background: #5075a1;
    color: #fff;
}
.contact-form #map {
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background: #f2f3f4;
}
.contact-form .contact-item {
    position: relative;
    padding: 1.5rem 0 1.5rem 4rem;
}
.contact-form .contact-item img {
    width: 3rem;
    height: 3rem;
    opacity: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.25rem;
    margin: auto;
}
.contact-form .contact-item span {
    font-size: 0.9rem;
    color: #7a7a7a;
    font-weight: 400;
    display: block;
}
.contact-form .contact-item strong {
    font-size: 1rem;
    color: #13202e;
    font-weight: 600;
    display: block;
}

/* CONTACT FORM */
.contact-form {
    padding: 5rem 0;
}
.contact-form h3 {
    font-weight: bold;
    color: #13202e;
}
.contact-form .form-group label {
    display: block;
    font-size: 0.9rem;
    color: #13202e;
    font-weight: 600;
    margin-bottom: 0.15rem;
}
.contact-form .form-group .form-control {
    height: auto;
    padding: 1rem;
    border-color: #ddd;
}
.contact-form .form-group .form-control:focus {
    box-shadow: rgba(10,10,10,0.1) 0 0.25rem 0.25rem;
    border-color: #ddd;
}
.contact-form .checkbox label,
.contact-form .radio label {
    display: block;
    position: relative;
    padding-left: 30px;
    margin: 5px 0 15px 0;
    cursor: pointer;
    user-select: none;
}
.contact-form .radio label {
    margin: 5px 0 5px 0;
}
.contact-form .checkbox label input,
.contact-form .radio label input {
    display: none;
}
.contact-form .checkbox label input + div,
.contact-form .radio label input + div {
    position: absolute;
    top: 4px;
    left: 0px;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 0;
}
.contact-form .radio label input + div {
    top: 0;
}
.contact-form .checkbox label input:checked + div:after,
.contact-form .radio label input:checked + div:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 2px;
    right: 0;
    width: 10px;
    height: 5px;
    margin: auto;
    border-bottom: 3px solid #5075a1;
    border-left: 3px solid #5075a1;
    transform: rotate(-45deg);
    content: '';
    z-index: 1;
}
.contact-form .checkbox label span,
.contact-form .radio label span {
    display: block;
    font-size: 0.9rem;
}
.contact-form .radio label span {
    padding-top: 2px;
}

/* PACKAGE DETAILS */
.post {
    padding: 5rem 0;
}
.post h2 {
    font-weight: bold;
    color: #13202e;
}
.package-services {
    position: relative;
    padding: 5rem 0;
    background: #f5f5fa;
}
.package-services h3 {
    font-weight: bold;
    color: #13202e;
}
.package-services .service-item {
    display: block;
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
    text-decoration: none;
    margin-top: 30px;
    height: calc(100% - 30px);
    transition: 0.15s ease all;
}
.package-services .service-item:hover {
    transform: scale(1.0325);
    box-shadow: rgba(0,0,0,0.1) 0 0.25rem 0.25rem;
    cursor: pointer;
}
.package-services .service-item.inactive {
    filter: grayscale(1) blur(2px);
    opacity: 0.75;
}
.package-services .service-item img {
    width: 3rem;
    height: 3rem;
}
.package-services .service-item h4 {
    font-weight: bold;
    color: #13202e;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.25rem;
}
.package-services .service-item .popup-title {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(0,0,0,0.5);
}
.package-services .service-item .popup-content .popup-details,
.package-services .service-item .popup-content .popup-image {
    display: none;
}
.get-in-touch {
    padding: 2.5rem 0;
    background: #5075a1;
    color: #fff;
}
.get-in-touch h3 {
    font-weight: bold;
}
.get-in-touch p {
    margin-bottom: 0;
}
.service-popup .modal-content {
    background: #fff;
    color: #13202e;
    border: none;
}
.service-popup .modal-content .modal-header {
    border-bottom: none;
    padding: 0;
}
.service-popup .modal-content .modal-body {
    position: relative;
    padding: 35px 50% 35px 35px;
}
.service-popup .modal-content .modal-body .popup-background {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: #182a34;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}
.service-popup .modal-content .modal-body .close {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 1;
    color: #fff;
    text-shadow: none;
}
.service-popup .modal-content h2 {
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 6px;
    color: #5075a1;
}
.service-popup .modal-content h3 {
    font-weight: bold;
    font-size: 30px;
    margin: 0 0 15px 0;
}
.service-popup .modal-content ul {
    display: block;
    list-style: none;
    margin: 0 0 25px 0;
    padding: 0;
}
.service-popup .modal-content ul li {
    display: block;
    position: relative;
    margin-bottom: 5px;
    color: #666;
    font-size: 0.9rem;
    padding-left: 1.25rem;
}
.service-popup .modal-content ul li:before {
    position: absolute;
    top: 0.6rem;
    left: 0;
    width: 0.7rem;
    height: 0.15rem;
    background: #13202e;
    content: ' ';
}
.service-popup .modal-content ul li:after {
    position: absolute;
    top: 0.6rem;
    left: 0;
    width: 0.7rem;
    height: 0.15rem;
    background: #13202e;
    transform-origin: center;
    transform: rotate(90deg);
    content: ' ';
}

/* BLOG POSTS */
.blog-posts {
    display: block;
    position: relative;
    padding: 20px 0 60px 0;
    background: #f2f3f4;
}
.blog-posts .blog-post {
    display: block;
    position: relative;
    background: #fff;
    margin-top: 30px;
    height: calc(100% - 30px);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: rgba(0,0,0,0.05) 0 0.25rem 0.25rem;
    overflow: hidden;
    transition: 0.15s ease all;
}
.blog-posts .blog-post:hover {
    transform-origin: center;
    transform: scale(1.025);
}
.blog-posts .blog-post .blog-thumbnail {
    display: block;
    width: calc(100% + 3rem);
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    height: auto;
}
.blog-posts .blog-post .blog-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.blog-posts .blog-post .blog-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #13202e;
    transition: 0.15s ease all;
}
.blog-posts .blog-post .blog-title:hover {
    color: #5075a1;
    text-decoration: none;
}
.blog-posts .blog-post .blog-date {
    display: inline-block;
    vertical-align: middle;
    font-size: 0.9rem;
    color: #7a7a7a;
}
.blog-posts .blog-post .blog-type {
    display: inline-block;
    vertical-align: middle;
    padding-left: 0.5rem;
    margin-left: 0.5rem;
    border-left: 1px solid #ddd;
    font-size: 0.9rem;
    color: #7a7a7a;
}
.blog-posts .pagination {
    margin-top: 30px;
}
.blog-posts .pagination .page-item {
    margin-right: 0.5rem;
}
.blog-posts .pagination .page-item .page-link {
    border-radius: 0.5rem;
    background: #fff;
    border: none;
    color: #13202e;
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
    font-weight: bold;
    height: auto;
    transition: 0.15s ease all;
}
.blog-posts .pagination .page-item .page-link:hover,
.blog-posts .pagination .page-item .page-link:focus {
    background: #eee;
    color: #13202e;
    box-shadow: none;
}
.blog-posts .pagination .page-item .page-link:active {
    background: #ddd;
    color: #13202e;
    box-shadow: rgba(10,10,10,0.1) 0 0.25rem 0.25rem;
    transform-origin: center;
    transform: scale(0.9);
}
.blog-posts .pagination .page-item.active .page-link {
    background: #5075a1;
    color: #fff;
}
.blog-post-page {
    padding: 0 0 5rem 0;
}
.blog-post-page img.post-cover {
    width: 100%;
    height: auto;
}
.blog-post-page h1 {
    font-weight: bold;
    font-size: 2rem;
    margin: 2.5rem 0 0.5rem 0;
}
.blog-post-page h4 {
    font-weight: bold;
    font-size: 1rem;
    margin: 2.5rem 0 0.25rem 0;
}
.blog-post-page .social-icons {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.blog-post-page .social-icons li {
    display: inline-block;
    vertical-align: middle;
}
.blog-post-page .social-icons li a {
    display: block;
    width: 3rem;
    height: 3rem;
    text-align: center;
    line-height: 3rem;
    background: #f2f3f4;
    border-radius: 50%;
}
.blog-post-page .social-icons li a img {
    width: 1rem;
    height: 1rem;
    filter: brightness(0);
    opacity: 0.5;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .solutions .service h4 {
        font-size: 0.9rem;
    }
    .main.v2,
    .main.v3 {
        background-position: center right -200px;
        background-size: cover;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    html, body {
        font-size: 14px;
    }
    .navbar .navbar-brand span {
        display: none;
    }
    .navbar .nav-item .nav-link {
        margin-left: 0.5rem;
    }
    .main.v2,
    .main.v3 {
        background-position: center right -200px;
        background-size: cover;
    }
    .service-popup .modal-content .modal-body .popup-background {
        top: 0;
        left: 0;
        width: 100%;
        height: 215px;
    }
    .service-popup .modal-content .modal-body {
        padding-top: 250px;
        padding-right: 35px;
    }

    .clients .client-box .client-thumbnail img {
        height: auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    html, body {
        font-size: 14px;
    }
    .navbar-light {
        padding: 0.5rem 15px;
    }
    .navbar .navbar-brand span {
        display: none;
    }
    .navbar-light .navbar-toggler {
        border-color: transparent;
        outline: none;
        box-shadow: none;
    }
    .navbar .nav-item .nav-link {
        margin-left: 0;
        text-align: center;
    }
    .navbar .nav-item .nav-link:not(.button):after {
        display: none;
    }
    .navbar .nav-item:last-child {
        padding-bottom: 0.5rem;
    }
    .navbar .nav-item .nav-link.button {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .main {
        padding: 4rem 0;
    }
    .main h1 {
        font-size: 1.75rem;
    }
    .main p {
        color: rgba(255,255,255,0.75);
    }
    .about .about-item {
        border-right: none;
    }
    .pourquoi {
        padding: 2.5rem 0;
    }
    .pourquoi .pourquoi-item {
        margin-top: 15px;
        height: auto;
    }
    .reviews .review-box {
        padding: 3rem 1.5rem;
    }
    .reviews .review-box p {
        margin: 1.5rem 0;
        font-size: 1.15rem;
    }
    .reviews .review-people .review-person {
        margin-right: 0;
    }
    .reviews .review-people .review-person span {
        display: none;
    }
    .comment-proceder {
        padding: 2.5rem 0 2.5rem 0;
    }
    .comment-proceder .step-box {
        height: auto;
    }
    .prix .divider {
        width: 100%;
        height: 1px;
        margin: 2rem 0;
    }
    .cta-1 {
        padding: 6rem 0;
        text-align: center;
    }
    .cta-1:before {
        opacity: 0.5;
    }
    .cta-1 h3 {
        font-size: 1.75rem;
    }
    .solutions .service {
        text-align: left;
        border-right: none;
        margin-top: 1.5rem;
        display: flex;
        align-items: center;
    }
    .solutions .service img {
        width: 2.5rem;
        height: 2.5rem;
        margin-right: 1rem;
    }
    .services {
        padding-top: 1rem;
    }
    .services .box {
        margin-top: 1.5rem;
    }
    footer.page-footer .contact-item {
        margin-top: 1.5rem;
    }
    .nos-services .service-box {
        margin-top: 0;
        height: auto;
    }
    .service-screen {
        padding: 15rem 0 2.5rem 0;
    }
    .service-screen.v3 {
        padding-top: 2.5rem;
    }
    .service-screen .service-screen-bg {
        width: 100%;
        height: 13.5rem;
    }
    .service-details {
        padding: 2.5rem 0;
    }
    .contact-boxes .contact-item {
        text-align: left;
        padding: 1.5rem 0 1.5rem 4rem;
    }
    .contact-boxes .contact-item img {
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
    }
    .contact-form {
        padding: 2.5rem 0;
    }
    .contact-form #map {
        margin-top: 1.5rem;
    }
    .main.v2,
    .main.v3 {
        background-position: center right -150px;
        background-size: cover;
    }
    .post {
        padding: 2.5rem 0;
    }
    .package-services {
        padding: 2.5rem 0;
    }
    .package-services .service-item {
        height: auto;
        margin-top: 15px;
    }
    .get-in-touch p {
        margin-bottom: 1.5rem;
    }
    .get-in-touch .text-center {
        text-align: left !important;
    }
    .service-popup .modal-content .modal-body {
        padding: 250px 25px 25px 25px;
    }
    .service-popup .modal-content .modal-body .popup-background {
        width: 100%;
        height: 225px;
    }

    .clients .client-box .client-thumbnail img {
        height: auto;
        width: 100%;
    }
}