<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;display=swap');

@font-face {
  font-family: aquatico-regular;
  src: url(../webfonts/Aquatico-Regular.otf);
}


/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

body {
    line-height: 26px;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333b55;
}

ol,
ul {
    list-style: none;
}

a:hover {
    text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus{
    outline: none;
}

/* page loader  */
#preloader {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    height: 100vh;
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.loader3 {
    width: 50px;
    height: 50px;
    display: inline-block;
    padding: 0px;
    text-align: left;
}

.loader3 span {
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #000;
    -webkit-animation: loader3 1.5s linear infinite;
    animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
    animation-delay: -0.9s;
    -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
    0% {
        -webkit-transform: scale(0, 0);
                transform: scale(0, 0);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1, 1);
                transform: scale(1, 1);
        opacity: 0;
    }
}

@-webkit-keyframes loader3 {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }
}


/*home area start*/

.home_wrapper {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.menu-box {
    width: 90px;
    height: 100%;
    background: #000000;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 9999;
}

.menu-box img {
    cursor: pointer;
}

/*ofcavas menu area start*/

.ofcavas-menu {
    position: fixed;
    top: 0;
    left: -150%;
    width: 300px;
    height: 100vh;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    z-index: 99;
    -webkit-box-shadow: 2px 19px 8px rgb(0 0 0 / 22%);
            box-shadow: 2px 19px 8px rgb(0 0 0 / 22%);
}

.ofcavas-menu.open {
    left: 90px;
}

.mobile-menu-default {
    width: 100%;
    height: 50vh;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.mobile-menu-one {
    background: #000000;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.mobile-menu-one h3,
.mobile-menu-two h3 {
    font-family: aquatico-regular;
    font-size: 18px;
    color: #fff;
    letter-spacing: 4px;
}

.mobile-menu-two {
    background: #fff;
}

.pdf-btn {
    padding: 4px 10px;
    border: 1px solid #FFFFFF;
    color: #fff;
    font-weight: 300;
    margin-top: 20px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.pdf-btn:hover {
    background: #fff;
    color: #000;
}

.mobile-menu-two h3 {
    color: #000000 !important;
}

.mobile-menu-two p {
    color: #000000;
    font-size: 16px;
    max-width: 220px;
    margin: 15px auto 0 auto;
    text-align: center;
}

.contact_top {
    margin-top: 30px;
}

.flex_direction {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

@keyframes mover {
  0%{transform: translateY(0);}
  100%{transform: translateY(6px);}
}

.scroll_btn img {
    display: none;
    animation: mover 1s infinite alternate;
}

.scroll_btn {
    color: #fff;
    font-size: 16px;
    -webkit-transform: translateY(155px);
        -ms-transform: translateY(155px);
            transform: translateY(155px);
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.scroll_btn:hover {
    color: #fff;
}

.overlay {
    position: fixed;
    top: 0;
    left: -100%;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: rgb(0 0 0 / 32%);
}

.visible {
    left: 0 !important;
}


/*synonymes area start*/

.synonymes-wrapper {
    width: 100%;
    height: 100vh;
    padding: 54px 0 54px 50px;
}

.synonymes_content {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.synonymes-first-content img {
    max-width: 240px;
}

.synonymes-first-content span {
    display: block;
}

.syn_text {
    color: #000000;
    font-style: italic;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 300;
}

.synonymes_content_sub {
    margin-top: 30px;
}

.synonymes_content p,
.synonymes_content span {
    color: #000000;
    font-weight: 600;
    font-size: 16px;
}

.du_text {
    font-size: 13px !important;
    font-style: italic;
}

.text-style {
    font-style: normal !important;
    display: block;
}

.synonymes_content_head {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    margin-top: 40px;
}

.synonymes_text p {
    font-size: 14px !important;
    color: #0000FF !important;
    line-height: 20px !important;
    font-weight: 500 !important;
    margin-top: 10px;
}

.nous-btn {
    padding: 14px 19px;
    letter-spacing: 2px;
    background: #FFFFFF;
    border: 1px solid #707070;
    font-size: 20px;
    font-weight: 700;
    color: #0000FF;
    margin-top: 40px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: inline-block;
}

.nous-btn:hover {
    background: #0000FF;
    color: #fff;
    border-color: #0000FF;
}

.theme_bg {
    background: #F7F7F7;
}


/*footer area start*/
footer {
    padding: 30px 0 60px 0;
}

.footer-left,
.footer-right {
    margin-top: 30px;
}

.footer-left h3 {
    color: #000000;
    font-size: 17px;
    font-family: aquatico-regular;
}

.footer-left a {
    color: #0000FF;
    font-size: 15px;
    font-weight: 600;
    margin: 15px 0;
    display: block;
}

.footer-left span {
    color: #000000;
    font-size: 15px;
    font-weight: 300;
}

.footer-right ul li {
    display: inline-block;
}

.footer-right ul li a {
    font-size: 15px;
    color: #000000;
    text-transform: uppercase;
    margin: 0 2px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    letter-spacing: 2px;
}

.footer-right ul li a:hover,
.footer-right p a:hover {
    color: #0000FF;
}

.footer-right p {
    margin-top: 10px;
    font-size: 15px;
    color: #000000;
}

.mobile-footer {
    display: none;
}

.linkedin-icon {
    display: none;
}

/*comming soon area start*/
header {
    position: fixed;
    z-index: 9;
    top: 30px;
    width: 100%;
}

.comeing-soon {
    padding: 115px 0 0 0;
}

.comeing-soon::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.38);
}

.comeing-soon p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.mr_10 {
    margin-right: 10px;
}

.mt_20 {
    margin-top: 20px;
}

.mt_30 {
    margin-top: 30px;
}

.contact-btn {
    display: inline-block;
    padding: 2px 45px;
    background: #fff;
    border-radius: 36px;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.contact-btn:hover {
    background: #000;
    color: #fff;
}

.comeing-soon h3 {
    letter-spacing: 1.4px;
    font-size: 17px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.mt_10 {
    margin-top: 10px;
}

.mt_15 {
    margin-top: 15px !important;
}

.social-icon a img {
    max-width: 30px;
}

.mr_10 {
    margin-right: 10px;
}

.comeing-soon img {
    max-width: none;
    width: 445px;
}

.modal {
    background: rgb(255 255 255 / 85%);
    z-index: 99999;
}

.modal-title {
    font-size: 25px;
    color: #0000FF;
    font-weight: 700;
    letter-spacing: 2px;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: none;
}

.modal-header p {
    color: #000000;
    font-size: 13px;
    margin-top: 15px;
    letter-spacing: 2px;
}

.modal-content {
    border: 1px solid #000000;
    border-radius: 0;
    padding: 30px 10px 30px 10px;
}

.modal-border {
    width: 65px;
    height: 1px;
    background: #707070;
    display: inline-block;
    margin-top: 15px;
}

.close-btn {
    border: none;
    background: no-repeat;
    right: -58px;
    top: 0;
}

.close-btn img {
    width: 32px;
}

.input_info input,
.input_info textarea {
    border: 1px solid #000000;
    width: 100%;
    height: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #6C6C6C;
}

.input_info input::-webkit-input-placeholder {
    color: #6C6C6C;
}

.input_info input::-moz-placeholder {
    color: #6C6C6C;
}

.input_info input:-ms-input-placeholder {
    color: #6C6C6C;
}

.input_info input::-ms-input-placeholder {
    color: #6C6C6C;
}

.input_info input::placeholder {
    color: #6C6C6C;
}

.input_info textarea {
    height: 105px;
    padding-top: 10px;
    resize: none;
}

.envoyer-btn {
    background: #0000FF;
    border: none;
    color: #fff;
    padding: 6px 30px;
    margin-top: 30px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    letter-spacing: 2px;
}

.envoyer-btn:hover {
    background: #1010d2;
}

footer p a {
    color: #000000;
}


/*return-to-top START CSS*/

.back-to-top {
    font-size: 24px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    border-radius: 50%;
    background: #000;
    z-index: 1000;
    opacity: 1 !important;
}

.back-to-top i {
    color: #fff;
}</pre></body></html>