*, html, body{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}
.width-m{
    width: 83%;
    margin: auto;
}
.max-width-px{
    max-width: 1995px;
    margin: auto;
}
.line-height{
    line-height: 2.1;
}

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #fff;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  }
  .lds-facebook div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
  }
  .lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
  }
  .lds-facebook div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
  }
  @keyframes lds-facebook {
    0% {
      top: 8px;
      height: 64px;
    }
    50%, 100% {
      top: 24px;
      height: 32px;
    }
  }
.loading{
    height: 100vh;
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    z-index: 1000;
} 
.desctiveLoading{
    display: none;
}

/* Popup container */
.popup {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }

  /* Popup content */
  .popup-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 40px 20px;
    border: 1px solid #888;
    width: 300px;
    text-align: center;
    position: relative;
  }
  .popup-content img {
    width: 70px;
    position: absolute;
    top: -81px;
    right: 50%;
    transform: translate(50%, 50%);
}
.popup-content.one p{
    animation: animationSendMes 1s infinite linear;
}
@keyframes animationSendMes {
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        opacity: 0;
    }
}
  /* Close button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 10px;
    top: 0;
    cursor: pointer;
  }

.whatsapp img {
    position: fixed;
    width: 65px;
    right: 19px;
    bottom: 130px;
    animation: animationWhatsapp 3s infinite linear;
    z-index: 100;
}
@keyframes animationWhatsapp {
    0%{
        transform: translateY(0);
    }
    25%{
        transform: translateY(10px);
    }
    50%{
        transform: translateY(20px);
    }
    75%{
        transform: translateY(10px);
    }
    100%{
        transform: translateY(0);
    }
}
.mobile-v{
    display: none;
}
.arrow-top img {
    position: fixed;
    width: 36px;
    padding: 8px;
    right: -118px;
    bottom: 30px;
    background: #eaf3fc;
    border-radius: 50%;
    transition: all .5s;
    border: 3px solid black;
    z-index: 100;
}

.active-arrow-top img{
    right: 24px;
}
/*-----------animation when scrolling style--------------*/
/*------ bottom to top -------*/
.animt_scroll_btt{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 1s ease;
}
.active_ani_scroll_btt{
    transform: translateY(0);
    opacity: 1;
}
/*------ top to bottom -------*/
.animt_scroll_ttb{
    position: relative;
    transform: translateY(-90px);
    opacity: 0;
    transition: all 1s ease;
}
.active_ani_scroll_ttb{
    transform: translateY(0);
    opacity: 1;
}
/*------ left to right ---------*/
.animt_scroll_rtl{
    position: relative;
    transform: translateX(-150px);
    opacity: 0;
    transition: all 1s ease;
}
.active_ani_scroll_rtl{
    transform: translateX(0);
    opacity: 1;
}
/*-----------------------------*/
header{
    position: relative;
    height: 100vh;
}
.menuBar{
    display: none;
    margin: auto 15px;
    font-size: 30px;
}
.logo img {
    width: 260px;
}
.content-slide {
    position: absolute;
    top: 0;
    color: white;
    margin-top: -47px;
    padding-left: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - 115.19px);
}
.content-slide{
    transition: transform .5s;
}
.content-slide h3.title-slide {
    transform: translateX(-360px);
}
.content-slide .buttons {
    transform: translateY(104px);
}
.activeBg-Slide{
    transition: all .5s;
    display: block !important;
}
.activeBg-Slide .content-slide h3.title-slide {
    animation: animationActiveSlide .5s 1 linear;
    transform: translateX(0);
}
@keyframes animationActiveSlide {
    0%{
        transform: translateX(-360px);
    }
    50%{
        transform: translateX(-180px);
    }
    100%{
        transform: translateX(0);
    }
}
.activeBg-Slide .content-slide .buttons {
    animation: animationActiveSid .5s 1 linear;
    transform: translateX(0);
}
@keyframes animationActiveSid {
    0%{
        transform: translateY(104px);
    }
    50%{
        transform: translateX(52px);
    }
    100%{
        transform: translateX(0);
    }
}
.slide-content{
    display: none;
}
h3.title-slide {
    font-size: 61px;
    padding-top: 151px;
}
.video-content {
    top: 115px;
    width: 100%;
}
button.services-section-go {
    margin-right: 31px;
}
.video-content .backg-slid {
    position:relative;
    width: 100%;
    height: calc(100vh - 84.19px);
    object-fit: cover;
    filter: brightness(60%) contrast(153%);
}

.buttons button {
    padding: 20px 35px;
    margin-top: 30px;
    font-size: 15px;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
}

button.services-section-go {
    background: #3997c9;
    color: white;
    transition: all .5s;
}
button.services-section-go:hover {
    background: white;
    color: #3997c9;
}
button.contact-section-go {
    color: #3997c9;
    transition: all .5s;
}
button.contact-section-go:hover {
    background: #3997c9;
    color: white;
}
.header-top {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.sections-slid img {
    width: 72px;
    cursor: pointer;
    transition: all .5s;
}

.sections-slid {
    z-index: 100;
    position: absolute;
    bottom: 0;
    background: #3997c9;
    width: 100%;
}

.sections-content-slide {
    display: flex;
    justify-content: center;
}

.section-slide:hover {
    background-color: #9bd5e6;
}

p.domain-activite-nom {
    position: absolute;
    z-index: -1;
    top: -152px;
    color: white;
    background: black;
    transform: rotate(-90deg);
    left: -52px;
    width: 220px;
    height: 97%;
    display: flex;
    align-items: center;
    display: none;
}
.activeBar-side p.domain-activite-nom {
    display: flex;
    animation: animationTitleSlid .5s 1 linear;
}
@keyframes animationTitleSlid {
    0%{
        top: -65px;
    }
    50%{
        top: -105px;
    }
    100%{
        top: -152px;
    }
}
.section-slide {
    padding: 8px 22px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-slide.activeBar-side {
    background: #9bd5e6;
}

.navbar li {
    display: block;
}

.navbar ul {
    display: flex;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
}
header .navbar ul li a {
    color: white !important;
    padding: 62px 15px;
    transition: all .5s;
    font-size: 14px;
}
header .navbar ul li a:hover {
    background-color: #124bad;
}
.header-content {
    display: flex;
    justify-content: space-evenly;
    padding: 59px 0;
    padding-top: 192px;
}
header .header-top {
    background: #3997c9;
    position: fixed;
    width: 100%;
    z-index: 998;
    padding: 18px 0;

}
.img-prepa img {
    width: 290px;
}

.img-prepa {
    position: relative;
}

img.img-header {
    animation: animationwater 3s infinite linear;
}

@keyframes animationwater {
    0%{
        transform: translateY(0);
    }
    25%{
        transform: translateY(15px);
    }
    50%{
        transform: translateY(30px);
    }
    75%{
        transform: translateY(15px);
    }
    100%{
        transform: translateY(0);
    }
}

.stats1 {
    height: 300px;
    position: relative;
}

.text {
    position: absolute;
    width: 82%;
    text-align: center;
    top: 47%;
    transform: translate(50%, 50%);
    right: 50%;
}
.text h3 {
    font-size: 30px;
}
.icon-edt {
    padding-right: 10px;
}
button.btn-change-lang {
    padding: 14px 36px;
    border: 1px solid white;
    background-color: #2194c6;
    border-radius: 7px;
    color: white;
    cursor: pointer;
    transition: all .5s;
}
button.btn-change-lang:hover {
    background-color: #225bb6;
}
.logo-title h2 {
    color: white;
    font-size: 43px;
    text-align: center;
}

span.color-title {
    color: #9bd5e6;
}
.sub-title {
    margin-top: 27px;
    font-size: 44px;
}

.sub-title h5 {
    color: #9bd5e6;
}
.img-prepa h2 {
    color: white;
    font-size: 30px;
}

.stats1 img {
    width: 267px;
    margin-top:
    -77px;
}
h5.subH5 {
    color: white;
    margin-left: 64px;
}
.logo-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h5.title-conf {
    font-size: 20px;
    color: white;
    border-left: 6px solid #3997c9;
    margin: 20px 0px;
    padding: 7px 0;
    margin-top: 9px;
    padding-left: 17px;
    font-weight: bolder;
}
.img-gif {
    text-align: center;
}

.img-gif img {
    width: 460px;
    border-radius: 50%;
}
/*----------------------------------*/
.video-section {
    display: flex;
    width: 83%;
    margin: auto;
    padding: 53px 0;
}
.video-ytb img {
    width: 100%;
}
.video-descr {
    padding-left: 34px;
}
img.droneimg {
    width: 52px;
}

h2.title-video-sec,
h2.title-goals-sec {
    font-weight: bolder;
    align-items: center;
    display: flex;
}
.title-video-sec:before,
.title-goals-sec:before {
    margin-right: 20px;
    width: 6px;
    height: 33px;
    border-radius: 3px;
    content: "";
    background: #293980;
    display: inline-block;
}
p.desc-video-sec {
    font-size: 18px;
    text-align: justify;
    padding-top: 25px;
    line-height: 2.8;
}

/*----------------------------------------*/
.list-goals p.desc-video-sec {
    width: 86%;
}
.goals-section {
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding-bottom: 42px;
}

.list-goals li {
    position: relative;
    display: block;
    padding-top: 24px;
    font-weight: 600;
    padding-left: 22px;
    line-height: 2.1;
}

.list-goals li:before {
    margin-right: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: "";
    background: #293980;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 30px;
}

.goals-img img {
    width: 75%;
}
.list-goals ul {
    width: 90%;
}
/*--------------------------------------------*/
.features-section{
    background: url('../assets/background_domaine.jpg');
    padding: 100px 0;
}
.title-features-section{
    position: relative;
    color: white;
    text-align: center;
}
.title-features-section::after {
    content: "";
    position: absolute;
    bottom: -11px;
    width: 33px;
    height: 6px;
    border-radius: 3px;
    background-color: white;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.feature {
    width: 206px;
    background: white;
    margin-top: 46px;
    padding: 20px;
    border-radius: 15px;
    transition: all .5s;
}
.feature:hover{
    -webkit-transform: scaleY(1.1);
    transform: scaleY(1.1);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.icon img {
    background: #83c3dd;
    padding: 18px;
    border-radius: 50%;
    width: 120px;
    margin-bottom: 6px;
}

.icon {
    text-align: center;
}

.box {
    height: 100%;
}

.features-phase h4 {
    padding: 9px 0px;
}

.features-phase p {
    color: #a6a6a6;
    line-height: 2.1;
    padding-top: 15px;
}
/*--------------------------------------*/
.fact-section {
    padding: 150px 0;
}

.fact-section h2 {
    text-align: center;
    font-size: 30px;
}

.fact-section h2 {
    text-align: center;
    font-size: 30px;
}

.hr-empl {
    display: flex;
    padding-top: 75px;
}

.hr-empl img {
    width: 155px;
}

.hr, .empl {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

span.count-stats {
    font-size: 40px;
    font-weight: bold;
}

.hr-empl h4 {
    padding-top: 20px;
    font-size: 18px;
}

.hr {
    border-right: 1px solid black;
}
.features-phase {
    text-align: center;
}
/*-------------------------------------------*/
.moasher-sec {
    padding: 150px 0;
    background: rgba(46, 134, 222, 0.1);
}
.moasher-head h2{
    position: relative;
    text-align: center;
}
.moasher-head h2::after {
    content: "";
    position: absolute;
    bottom: -11px;
    width: 33px;
    height: 6px;
    border-radius: 3px;
    background-color: #293980;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.moasher-head p {
    padding-top: 28px;
    text-align: center;
    width: 65%;
    margin: auto;
    font-size: 17px;
    font-weight: 500;
    line-height: 2.1;
}
.box-moasher {
    width: 230px;
    padding: 15px;
    padding-bottom: 34px;
    background: white;
    margin: 21px auto;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 5px;
    transition: all .5s;
}
.image-moasher {
    padding: 17px;
    text-align:center;
    padding-bottom: 0;
}
.moasher-sec-list {
    display: flex;
    margin-top: 44px;
}
.box-moasher ul li {
    display: block;
    position: relative;
    font-size: 12px;
    line-height: 2.1;
    padding-left: 20px;
}
.box-moasher ul li:before {
    margin-right: 20px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    content: "";
    background: #293980;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 8px;
}
.box-moasher ul {
    padding-top: 19px;
}
ul.subUl {
    padding: 0;
}
ul.subUl li {
    position: relative;
    margin-left: 24px;
    margin-top: 20px;
    padding: 0;
}
ul.subUl li:before {
    width: 5px;
    position: absolute;
    left: -21px;
    height: 5px;
    border-radius: 50%;
    content: "";
    background: #9bd5e6;
    display: inline-block;
    top: 9px;
}
h4.title-box-moa {
    padding: 14px;
    font-size: 19px;
    font-weight: bolder;
    text-align:center;
}
p.desc-box-moa {
    color: #9b9b9b;
    transition: all .5s;
}
.image-moasher img {
    width: 51%;
    background: #0a429f;
    padding: 9px;
    border-radius: 50%;
    transition: all .5s;
}
.box-moasher:hover {
    background-color: #0a429f;
    color: white;
    -webkit-transform: scaleY(1.1);
    transform: scaleY(1.1);
}
.box-moasher:hover p.desc-box-moa {
    color: white;
}
.box-moasher:hover .image-moasher img {
    border-radius: 0;
}
/*--------------------------------------------*/
.imgs-reference img {
    width: 127px;
    margin: 0 10px;
}

.imgs-reference {
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    width: 44%;
    border-left: 3px solid #3997c9;
}
h3.title-reference {
    color: #3997c9;
}
.image-border{
    transition: all .5s;
}
.imgs-reference img {
    display: inline-block;
    vertical-align: middle;
}

.reference {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 112px 0px;
}
/*----------------------------------------*/
.contact-card {
    padding: 100px 0;
    background: #eaf3fc;
}
.contact-head h2{
    position: relative;
    text-align: center;
}
.contact-head h2::after {
    content: "";
    position: absolute;
    bottom: -11px;
    width: 33px;
    height: 6px;
    border-radius: 3px;
    background-color: #293980;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.contact-head p {
    padding-top: 28px;
    text-align: center;
    width: 65%;
    margin: auto;
    font-size: 17px;
    line-height: 2.1;
    font-weight: 500;
}

.features-card-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.features-card h5 {
    font-size: 16px;
    font-weight: 500;
}

.features-card h3 {
    font-size: 27px;
    padding: 15px 0;
}

.features-card li {
    display: block;
    font-weight: 700;
    padding-bottom: 21px;
}

.features-card ul li:before {
    margin-right: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: "";
    background: #293980;
    display: inline-block;
}

.btn-card a {
    color: white;
    text-decoration: none;
}

button.btn-card {
    padding: 15px 112px;
    border: none;
    background: #0a429f;
    font-size: 17px;
    border-radius: 5px;
}
.form-contact-info {
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
}

.input-form {
    padding: 18px 27px;
    width: 100%;
    margin-bottom: 25px;
    border: 1px solid #556680;
    border-radius: 5px;
    outline: none;
}

.contact-form {
    width: 40%;
}

textarea.input-form.textarea-form {
    height: 150px;
}

button.btn-send {
    padding: 16px 56px;
    border-radius: 5px;
    border: none;
    background: #556680;
    color: white;
    cursor: pointer;
    transition: all .5s;
}

button.btn-send:hover {
    background: #0a429f;
}

.ico-info {
    padding-bottom: 9px;
}
.info-con {
    margin: 17px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.email a {
    color: black;
    text-decoration: none;
}
.socialmedia a {
    color: #3b5998 ;
    padding: 0 6px;
    font-size: 20px;
}
p.info-con.socialmedia {
    display: block;
    text-align: center;
}
.info-contact {
    width: 47%;
    border: 1px solid #0a429f;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .5s;
}
.info-contact:hover{
    background-color: #0a429f;
}
.info-contact:hover .info-con,
.info-contact:hover .info-con a{
    color: white;
}
.scanne-qr img {
    width: 150px;
    background: white;
    border: 3px solid #3997c9;
    border-radius: 5px;
}

.scanne-qr {
    text-align: center;
}

p.scannez-ici {
    font-size: 19px;
    font-weight: bolder;
    padding-bottom: 19px;
}
/*---------------------------------------*/
.footer{
    background-color: #303442;
    padding-top: 40px;
}
.social-media h5 {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.socialmedia-links a {
    color: white;
    padding: 0 9px;
}

.socialmedia-links {
    display: flex;
    justify-content: space-between;
}


.social-media-part{
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.copyright h5 {
    text-align: center;
    padding: 28px 0;
    color: white;
    font-size: 18px;
    font-weight: 500;
}
.footer .navbar li {
    font-size: 12px;
    padding: 0px 15px;
}
/*--------------------------*/
@media (min-width: 992px) and (max-width: 1199px){
    .video-ytb iframe {
        width: 403px;
    }
    p.desc-video-sec {
        font-size: 15px;
    }
    h2.title-video-sec, h2.title-goals-sec {
        font-size: 19px;
    }
    .list-goals li {
        font-weight: 500;
        font-size: 14px;
    }
    button.btn-card {
        padding: 15px 89px;
        font-size: 14px;
    }
    .social-media h5 {
        color: white;
        font-size: 14px;
        font-weight: 500;
    }
    .navbar li {
        display: block;
        padding: 0px 15px;
        font-size: 13px;
    }
}
@media (min-width: 768px) and (max-width: 991px){
    .video-ytb iframe {
        width: 333px;
    }
    p.desc-video-sec {
        font-size: 13px;
        line-height: 2.5;
    }
    h2.title-video-sec, h2.title-goals-sec {
        font-size: 19px;
    }
    .goals-img {
        text-align: right;
    }
    .list-goals li {
        font-weight: 500;
        font-size: 14px;
    }
    button.btn-card {
        padding: 15px 66px;
        font-size: 14px;
    }
    .img-features img {
        width: 100%;
    }
    .contact-head h2 {
        font-size: 18px;
    }
    .contact-head p {
        font-size: 14px;
        padding-bottom: 21px;
    }
    .features-card h3 {
        font-size: 20px;
    }
    .features-card h5 {
        font-size: 13px;
    }
    .features-card li {
        font-size: 14px;
    }
    .socialmedia-links {
        font-size: 10px;
    }
    .social-media h5 {
        font-size: 10px;
    }
    .navbar li {
        display: block;
        padding: 0px 15px;
        font-size: 9px;
    }
    .copyright h5 {
        font-size: 11px;
    }
}
@media (min-width: 430px) and (max-width: 767px){
    img.droneimg {
    width: 37px !important;
}
p.desc-video-sec {
    text-align: left;
}
    .buttons button {
    padding: 20px 19px;
}
    h3.title-reference {
        padding-bottom: 24px;
    }
    h3.title-slide {
        font-size: 45px;
    }
    .content-slide {
        padding-left: 10px;
    }
    .sections-slid {
        display: block;
    }
    .sections-slid img {
       width: 58px;
    }
    .section-slide {
       padding: 8px 6px;
    }
    .video-content {
        top: 90px;
    }    
    .reference {
        display: block;
    }
    .imgs-reference {
        width: 100%;
    }
    .imgs-reference img {
        width: 99px;
        margin: 0 10px;
    }
    .img-prepa.two-imgs.gif-confiance-eng {
        margin-top: 240px;
    }
    .img-gif img {
        width: 80%;
    }
    .logo-title h2 {
        font-size: 36px;
    }
    .sub-title {
        font-size: 37px;
    }
    .list-goals p.desc-video-sec {
        width: 86%;
    }
    button.btn-change-lang {
        padding: 14px 17px;
    }
    .logo img {
        width: 200px;
    }
    .desktop-v{
        display: none;
    }
    .mobile-v{
        display: block;
    }
    .stats1 {
        margin-right: 0;
    }
    .info-contact:hover {
        background-color: white;
    }
    img.img-header {
        top: -182px;
        right: 16%;
    }
    .info-contact {
        width: 100%;
        display: block;
        padding: 43px 5px;
        border-radius: 5px;
    }
    .form-contact-info{
        display: block;
    }
    .contact-form {
        width: 80%;
        padding-bottom: 43px;
    }
    .menuBar{
        display: block;
        color: white;
    }
    .navbar {
        display: none !important;
        margin: auto 0;
    }
    .navbaractive {
        position: absolute !important;
        margin: auto 0;
        width: 100%;
        background: white;
        top: 90px;
        right: 0;
        z-index: 100;
    }
    .navbaractive ul {
        display: block;
        margin: 0;
        padding: 0px 40px;
    }
    .navbaractive li {
        margin: 20px 0;
        display: block;
    }
    .video-descr {
        padding-left: 0;
        padding-top: 24px;
    }
    .navbaractive ul li a {
        text-decoration: none;
    }
    .header-content {
        display: block;
        justify-content: space-evenly;
        padding: 59px 0;
        width: 90%;
        margin: auto;
    }
    .video-ytb iframe {
        width: 100%;
    }
    .goals-section {
        display: block;
    }
    .icon img {
        padding: 0px;
    }
    p.desc-video-sec {
        font-size: 13px;
        line-height: 2.5;
    }
    h2.title-video-sec, h2.title-goals-sec {
        font-size: 19px;
    }
    .goals-img {
        text-align: right;
    }
    .list-goals li {
        font-weight: 500;
        font-size: 14px;
    }
    .hr-empl {
        display: block;
    }
    .hr {
        border-right: 0 solid black;
    }
    .hr, .empl {
        width: 100%;
    }
    .moasher-sec-list {
        display: block;
    }
    .box-moasher {
        max-width: 90%;
    }
    .moasher-head p {
        width: 90%;
        font-size: 14px;
    }
    .features-card-img {
        display: block;
    }
    button.btn-card {
        padding: 15px 66px;
        font-size: 14px;
    }
    .img-features img {
        width: 100%;
    }
    .contact-head h2 {
        font-size: 18px;
    }
    .contact-head p {
        font-size: 14px;
        padding-bottom: 21px;
    }
    .features-card h3 {
        font-size: 20px;
    }
    .features-card h5 {
        font-size: 13px;
    }
    .features-card li {
        font-size: 14px;
    }
    .socialmedia-links {
        font-size: 10px;
    }
    .social-media h5 {
        font-size: 10px;
    }
    .navbar li {
        display: block;
        padding: 0px 15px;
        font-size: 9px;
    }
    .copyright h5 {
        font-size: 11px;
    }
    .footer .header-top {
        display: block;
        text-align: center;
    }
    .video-section {
        display: block;
    }
    .img-prepa {
        flex-direction: column;
        align-items: end;
        margin-top: 115px;
        align-items: center;
    }
    .sections-slid {
    bottom: 23px;
}
}
@media (max-width: 430px){
.sections-slid {
    bottom: 23px;
}
    p.desc-video-sec {
    text-align: left;
}
    img.droneimg {
    width: 37px !important;
    }
    .buttons button {
    padding: 20px 19px;
}
    h3.title-reference {
        padding-bottom: 24px;
    }
    h3.title-slide {
        font-size: 45px;
    }
    .content-slide {
        padding-left: 10px;
    }
    .video-content {
        top: 90px;
    } 
    .sections-slid {
        display: block;
    }
    .sections-slid img {
       width: 58px;
    }
    .section-slide {
       padding: 8px 6px;
    }
    .reference {
        display: block;
    }
    .imgs-reference {
        width: 100%;
    }
    .imgs-reference img {
        width: 99px;
        margin: 0 10px;
    }
    .img-prepa.two-imgs.gif-confiance-eng {
        margin-top: 240px;
    }
    .img-gif img {
        width: 80%;
    }
    .logo-title h2 {
        font-size: 36px;
    }
    .sub-title {
        font-size: 37px;
    }
    .list-goals p.desc-video-sec {
        width: 86%;
    }
    button.btn-change-lang {
        padding: 14px 17px;
    }
    .logo img {
        width: 200px;
    }
    img.img-header {
        top: -182px;
        right: 16%;
    }
    .desktop-v{
        display: none;
    }
    .mobile-v{
        display: block;
    }
    .stats1 {
        margin-right: 0;
    }
    .info-contact {
        display: block;
        width: 100%;
        padding: 43px 5px;
        border-radius: 5px;
    }
    .form-contact-info{
        display: block;
    }
    .contact-form {
        width: 80%;
        padding-bottom: 43px;
    }
    .video-section {
        display: block;
    }
    .menuBar{
        display: block;
        color: white;
    }
    .video-descr {
        padding-left: 0;
        padding-top: 24px;
    }
    .navbar {
        display: none !important;
        margin: auto 0;
    }
    .navbaractive {
        position: absolute !important;
        margin: auto 0;
        width: 100%;
        background: white;
        top: 90px;
        right: 0;
        z-index: 100;
    }
    .navbaractive ul {
        display: block;
        margin: 0;
        padding: 0px 40px;
    }
    .navbaractive li {
        margin: 20px 0;
        display: block;
    }
    .navbaractive ul li a {
        text-decoration: none;
    }
    .header-content {
        display: block;
        justify-content: space-evenly;
        padding: 59px 0;
        width: 90%;
        margin: auto;
    }
    .video-ytb iframe {
        width: 100%;
    }
    .goals-section {
        display: block;
    }
    .icon img {
        padding: 0px;
    }
    p.desc-video-sec {
        font-size: 13px;
        line-height: 2.5;
    }
    h2.title-video-sec, h2.title-goals-sec {
        font-size: 19px;
    }
    .goals-img {
        text-align: right;
    }
    .list-goals li {
        font-weight: 500;
        font-size: 14px;
    }
    .hr-empl {
        display: block;
    }
    .hr {
        border-right: 0 solid black;
    }
    .hr, .empl {
        width: 100%;
    }
    .moasher-sec-list {
        display: block;
    }
    .box-moasher {
        max-width: 90%;
    }
    .moasher-head p {
        width: 90%;
        font-size: 14px;
    }
    .features-card-img {
        display: block;
    }
    button.btn-card {
        padding: 15px 66px;
        font-size: 14px;
    }
    .img-features img {
        width: 100%;
    }
    .contact-head h2 {
        font-size: 18px;
    }
    .contact-head p {
        font-size: 14px;
        padding-bottom: 21px;
    }
    .features-card h3 {
        font-size: 20px;
    }
    .features-card h5 {
        font-size: 13px;
    }
    .features-card li {
        font-size: 14px;
    }
    .socialmedia-links {
        font-size: 10px;
    }
    .social-media h5 {
        font-size: 10px;
    }
    .navbar li {
        display: block;
        padding: 0px 15px;
        font-size: 9px;
    }
    .copyright h5 {
        font-size: 11px;
    }
    .footer .header-top {
        display: block;
        text-align: center;
    }
    .img-prepa {
        flex-direction: column;
        align-items: end;
        margin-top: 115px;
        align-items: center;
    }
    .text {
        position: absolute;
        width: 82%;
        text-align: center;
    }
}