@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;900&display=swap');


:root {
    --primary: #CCD11D;
    --dark: #1E1E1E;
}

/* Let's get this party started */
::-webkit-scrollbar {
    width: 6px;
    background: #f6f6f6;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #1E1E1E;
}

::-webkit-scrollbar-thumb:window-inactive {
    background: #1E1E1E;
}

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

html {
    direction: rtl;
}

body {
    font-family: "Tajawal", serif;
    font-weight: 500;
    font-style: normal;
    background-color: #1E1E1E;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

img {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

a, button {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
}

a:hover, a:active, a:focus, a:visited {
    text-decoration: none !important;
}

input, textarea, a, button {
    outline: none !important;
    text-decoration: none;
}

.margin-auto {
    margin: 0 auto;
    float: none !important;
}

/* img hover */
.img-hover {
    overflow: hidden;
    display: block;
}

.img-hover > img {
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

img {
    max-width: 100%;
}

/* end img hover */
.main-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.container {
    max-width: 1312px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Tajawal", serif;
    font-weight: 700;

}

/***
====================================================================
  Loading Transition
====================================================================
 ***/
/* Preloader */
.ctn-preloader {
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -ms-flexbox;
    height: 100%;
    justify-content: center;
    -webkit-justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99999999;
    background: #fff;
}

.txt-loading {
    direction: ltr;
}

.ctn-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 1px solid rgba(53, 123, 185, 0.15);
    border-top-color: #357BB9;
    height: 100px;
    margin: 0 auto 0 auto;
    width: 100px;
}

/* Texto cargando */

.ctn-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
    animation: letters-loading 4s infinite;
    color: #2196C6;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    top: 0;
    line-height: 50px;
    position: absolute;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
    font-family: "Tajawal", serif;
    font-weight: 700;
    letter-spacing: 10px;
    display: inline-block;
    color: rgba(12, 58, 86, 0.15);
    position: relative;
    font-size: 50px;
    line-height: 50px;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
    animation-delay: 1.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before {
    animation-delay: 1.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(11):before {
    animation-delay: 2s;
}

.ctn-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

/* AnimaciĂłn del preloader */

@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}


header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.home-section {
    position: relative;
    min-height: 95vh;
}

.home-section .container {
    position: relative;
    min-height: 95vh;
}

.drone-image {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.img-float {
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: 50px;
    width: 370px;
}

.img-float2 {
    position: absolute;
    left: 0;
    z-index: 3;
    bottom: 50px;
    width: 370px;

}

.img-float .img1 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.img-float2 .img2 {
    position: absolute;
    left: 0;
    bottom: 45px;
    z-index: 2;
}

.img-float2 .img2 img {
    position: relative;
    z-index: 1;
}

.img-float2 .img2 .data-img {
    position: absolute;
    z-index: 2;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
}

.data-img h3 {
    text-align: center;
    width: 155px;
    margin-left: 0;
    margin-right: auto;
    direction: ltr;
    padding-top: 10px;
    font-size: 32px;
    font-weight: 700;
}

.data-img h2 {
    text-align: center;
    width: 100%;
    margin-top: 45px;
    font-size: 24px;
    font-weight: 500;
}
.btn {
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    height: 56px;

}
.btn-img {
    display: flex;
    margin-top: 45px;
    padding-right: 15px;
}

.btn-light {
    background-color: #fff;
}

.btn-img .btn {
    width: 80px;
    height: 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
}

.slide-data {
    position: absolute;
    right: 0;
    bottom: 50px;
    z-index: 4;
    width: 100%;
    max-width: 600px;
}

.slide-data h1 {
    font-size: 100px;
    color: #fff;
    margin-bottom: 75px;
    font-weight: 900;
}

.slide-data p {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.btn-dark {
    background-color: #3F3F46;
}

.slide-btns {
    margin-top: 75px;
    display: flex;
    gap: 15px;
}



.slide-btns .btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section {
    padding: 150px 0;
}

.image2-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.header-sec {
    text-align: center;
    margin-bottom: 50px;
}

.header-sec h2 {
    font-size: 60px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.header-sec p {
    font-size: 20px;
    font-weight: 500;
    color: #71717A;
    white-space: pre-line;
}
.news-item{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.news-item .img{

    margin-bottom: 15px;
}

.news-item h3{
    font-size: 22px;
    font-weight: 700;
    color: #B8B6BA;
    margin-bottom: 15px;
}
.news-item h3 a{
    color: #B8B6BA;
}
.news-item p{
    font-size: 20px;
    font-weight: 500;
    color: #B8B6BA;
    line-height: 30px;
}
.news-btn{
    display: flex;
    margin-top: auto;
}
.news-btn .btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-section{
    padding: 150px 0;
}
.banner-bg{
    background: url("../images/banner-bg.svg") center left no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}
.bnr-btn{
    display: flex;
}
.br-txt{
    height: 180px;
    padding-left: 30px;
    padding-top: 50px;
}
.br-txt h3{
    font-size: 42px;
    font-weight: 900;
}
.br-txt p{
    font-size: 20px;
    font-weight: 500;
}

footer{
    padding: 80px 0 40px 0;
    background: url("../images/footer-line.svg") top center no-repeat;
    margin-top: 150px;
}

.footer-menu h2{
    font-size: 14px;
    color: #CCD11D;
    font-weight: 500;
}
.footer-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    padding-top: 5px;
    padding-bottom: 5px;

}
.footer-menu ul li a{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding-right: 0;
    border-right: 2px solid transparent;

}
.footer-menu ul li a:hover{
    padding-right: 10px;
    border-right: 2px solid #CCD11D;

}

.owl-dots{
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--dark);
    border-radius: 12px;
}
.owl-theme .owl-dots .owl-dot span{
    width: 8px;
    height: 32px;
    border-radius: 3px;
    background: rgba(255,255,255,0.5);
    transform: rotate(-40deg);
    opacity: 1;
    margin: 0 5px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: #CCD11D;
    opacity: 1;

}

@media(max-width: 1312px){
    .container{
        max-width: 1200px;
    }
    .drone-image{
        max-height: 650px;
    }
    .slide-data h1 {
        font-size: 80px;
    }
}
@media(max-width: 1200px){
    .container{
        max-width: 1000px;
    }
    .br-txt h3 {
        font-size: 35px;
    }
    .br-txt p {
        font-size: 16px
    }
    .btn {
        font-size: 14px;
        height: 40px;
    }

}

@media(max-width: 991px){
    .container{
        max-width: 800px;
    }

    .banner-section{
        background: #CCD11D;
    }
    .banner-bg{
        background: transparent;
    }
    .br-txt{
        margin-top: 0;
        padding-top: 0;
        height: auto;
        padding-bottom: 30px;
    }
    .slide-data {
        max-width: 400px;
    }
    .slide-data h1 {
        font-size: 60px;
        margin-bottom: 50px;
    }
    .slide-btns {
        margin-top: 50px;
    }
}
@media(max-width: 768px){
    .news-item .img{
        display: flex;
        justify-content: center;
    }
    .news-items .row > div{
        margin-bottom: 40px;
    }
    .footer-menu{
        text-align: center;
        margin-top: 30px;
    }
    .footer-logo{
        margin-bottom: 50px;
    }
    .header-sec h2 {
        font-size: 40px;
    }
    .header-sec p {
        font-size: 18px;
    }

    .img-float2 {
        position: absolute;
        left: 0;
        z-index: 3;
        top: 373px;
        bottom: auto;
        width: 200px;
    }
    .drone-image img{
        max-height: 300px;
    }
    .img-float {
        position: absolute;
        left: 0;
        z-index: 1;
        top: 100px;
        width: 200px;
        height: 300px;
    }
    .img-float .img1{
        position: relative;
        left: auto;
        bottom: auto;
        right: auto;
    }
    .img-float .img1 img{
        height: 300px;
    }

    .img-float2 .img2 img{
        width: 150px;
    }
    .img-float2 .img2 {
         left: 15px;
        bottom: 20px;
    }
    .data-img h3 {

        width: 110px;
        font-size: 20px;
    }
    .data-img h2 {

        margin-top: 25px;
        font-size: 20px;
    }
    .btn-img {
        margin-top: 39px;
        padding-right: 8px;
    }
    .btn-img .btn {
        width: 70px;
        height: 30px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 700;
    }
    .slide-data {
        position: relative;
        right: auto;
        bottom: auto;
        z-index: 4;
        width: 100%;
        max-width: 600px;
    }
    .home-section{
        min-height: auto;
        padding-top: 80px;
    }
    .home-section .container {
        position: relative;
        min-height: auto;
    }
    .owl-dots {
        position: absolute;
        left: 0;
        bottom: 10px;
        width: auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .owl-theme .owl-dots .owl-dot span {
        width: 6px;
        height: 24px;
    }
}
@media(max-width: 640px) {
    .slide-data h1 {
        font-size: 45px;
    }
    .slide-data {
      margin-top: 150px;
    }
}