@font-face {
    font-family: 'Heading';
    src: url('/fonts/Mj_Beirut-Heading.ttf');
}

@font-face {
    font-family: 'Regular';
    src: url('/fonts/Mj_Beirut-Light.ttf');
}
body {
    background-image: url("/images/background.png");
    background-size: cover;
    background-repeat: repeat;
    background-color: var(--clrone);
}


a {
    text-decoration: none;
    color: inherit;
}

h1{
    z-index: 500;
}
/*-------------------------------------*/
/*       homepage                    */
/*-------------------------------------*/



.contact-form {
    transform: translateY(-25%);


}


/*-------------------------------------*/
/*       colors                        */
/*-------------------------------------*/

:root {
    --clrone: #0A0A35;
    --clrtwo: #F6DA00;

}
.bg-clrone {
    background-color: var(--clrone) !important;
}

.text-clrtwo {
    color: var(--clrtwo);
}
.bg-clrtwo {
    background-color: var(--clrtwo);
}



/*-------------------------------------*/
/*        typugraphy  and font sizes   */
/*-------------------------------------*/

body * {
    color: white;
    font-family: 'Regular';

}

.regular {
    font-family: 'Regular' !important;
}



.fs-heading {
    /*67px*/
    font-family: 'Heading';
    font-size: 5rem;
}

.fs-heading2 {
    font-family: 'Regular';
    font-size: 20px;
}

.fs-heading3 {
    font-family: 'Regular';
    font-size: 42px;
}

.fs-general {

    /*!*24px*/
    font-size: 24px;
}

.fs-general2 {

    /*!*24px*/
    font-size: 34px;
}

strong{
    color: white ;
}

.underlinebg-header {
    background-image: url("/icons/underline.png");
    background-repeat: no-repeat;
    background-position: bottom;
}

input::placeholder {
    color: white !important;
    font-family: 'Regular';
}


/*-------------------------------------*/
/*       borders                       */
/*-------------------------------------*/

.border-white {
    border: 3px solid white;
}

.borde-rad-06 {
    border-radius: 0.6rem;
}

.border-rad-1 {
    border-radius: 1rem;
}
.border-rad-2 {
    border-radius: 2rem;
}


/*-------------------------------------*/
/*       Height and width              */
/*-------------------------------------*/

.container {
    max-width: 1440px !important;

}

.main-container {

    min-height: 100dvh;



}

.w100 {
    width: 100%;
}

.w33 {
    width: 33%;
}

.h100 {
    height: 100% !important;
}


.blank {
    height: 6rem;
}

.dvh-container {
    height: 85vh ;
}

.video-container {
    max-height: 40rem;
}


.swiper-wraper {
    align-items: stretch;
}







/*-------------------------------------*/
/*      navbar and footer              */
/*-------------------------------------*/

.top-navbar {

    width: 100% !important;

    height: 6rem;
    backdrop-filter: blur(1.6rem);
    z-index: 999;
}




/*-------------------------------------*/
/*       rounded buttons               */
/*-------------------------------------*/

.rounded-button-outlined {
    border: 3px solid white;
    border-radius: 2rem;
    padding: 0.1rem 2rem 0.1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.rounded-button-outlined:hover {
    background-color: white !important;
    color: black;
    svg {
        fill: black;
    }
    transition: 0.3s;
}


.rounded-button-filled {
   background-color: white;
    color: black !important;

    border-radius: 2rem;
    padding: 0.1rem 1rem 0.1rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    svg {
        fill: black;
    }
}
.rounded-button-filled:hover {
    background-color: var(--clrone);
    color: white !important;
    border: 3px solid white;
    border-radius: 2rem;
    svg {
        fill: white;
    }
    transition: 0.3s;
}


/*-------------------------------------*/
/*       animations                    */
/*-------------------------------------*/

.navbar-item:hover {
    color: var(--clrtwo);
    transition: 0.3s;
}


/* HTML: <div class="loader"></div> */
.spinninginfinite {
    display: inline-grid;
}
.spinninginfinite:before,
.spinninginfinite:after {
    content: "";
    grid-area: 1/1;
    height: 30px;
    aspect-ratio: 6;
    --c: #0000 64%, #ffb901 66% 98%,#0000 101%;
    background:
            radial-gradient(35% 146% at 50% 159%,var(--c)) 0 0,
            radial-gradient(35% 146% at 50% -59%,var(--c)) 25% 100%;
    background-size: calc(100%/3) 50%;
    background-repeat: repeat-x;
    clip-path: inset(0 100% 0 0);
    animation: l10 3s infinite linear;
}
.spinninginfinite:after {
    scale: -1;
}
@keyframes l10{
    50% {clip-path: inset(0)}
    to {clip-path: inset(0 0 0 100%)}
}






.floating-pofak {
    position: absolute;

    width: 6rem;
    height: 6rem;
    transition: 1s ease-in-out;


}



@keyframes verticalWobble {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px); /* Moves the image up */
    }
    100% {
        transform: translateY(0); /* Returns to the original position */
    }

}

.verticalWobble {
    animation: verticalWobble 2s infinite ease-in-out;
}


@keyframes wobble {
    0%, 100% {
        transform: rotate(0deg);
    }
    15% {
        transform: rotate(-5deg);
    }
    30% {
        transform: rotate(3deg);
    }
    45% {
        transform: rotate(-3deg);
    }
    60% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-1deg);
    }
}

.wobble-image:hover  {

    animation:1s 1 ease-in-out wobble; /* Run animation once */

}



/*-------------------------------------*/
/*       Home page slider              */
/*-------------------------------------*/

.swiper-button-prev, .swiper-button-next {
    color: white !important;

    border: 3px solid white;
    border-radius: 50%;
    padding: 1rem ;
}
.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 1.5rem !important;
    font-weight: bolder;
}
.mySwiper{
    min-height: 35rem;
}

.mySwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.mySwiper .swiper-slide-active {

    display: flex;
    justify-content: flex-end;


    background-image: url("/images/halo.png");
    background-attachment: fixed;
    background-size: 66%;
    background-repeat: no-repeat;
    background-position: left;
    opacity: 1;

    width: 80% !important;

    img {
        width: 100% !important;
        transition: width 0.5s ease;
    }
    button {
        display: block;
        img {
            width: 1.5rem !important;
        }
    }



}

.mySwiper .swiper-slide-next,
.mySwiper .swiper-slide-prev {


    /*width: 20% !important;*/


    justify-content: flex-start;

    transition: width 0.5s ease;

    align-items: flex-end;


    opacity: 0.6;

    button {
        display: none;
    }

}

.slide-content {
    /*width: 20% !important;*/
    display: flex;
    justify-content: flex-end;


    transition: width 0.5s ease;

    align-items: flex-end !important;
    justify-content: flex-start;


    opacity: 0.6;

    button {
        display: none;
    }

    img {
        width: 6rem !important;
        transition: width 0.9s ease;
    }


}


.homeslider-img {


    animation: verticalWobble 2s infinite ease-in-out;

}

.homeslider-botton {
    font-size: 28px;
    position: absolute;
    top: 30%;
    right:18%;
    transform: rotate(-15deg);
    z-index: -1;
}


.blogslidercard {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
    height: 30rem;
    img {
        width: 100%;
        height: 7.5rem;

    }
}





/*-------------------------------------*/
/*       Home page products card       */
/*-------------------------------------*/

.product-card-container {
    position: relative;
    background-image: url("/images/circle.png");
    background-size: 55%;
    background-position: center;
    background-repeat: no-repeat;
}



/*-------------------------------------*/
/*       responsive                    */
/*-------------------------------------*/

/*mobile*/
@media  screen and (max-width: 430px) {

    .blogslidercard {
        height: 35rem;
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }

    .mySwiper .swiper-slide-active{
        width: 100% !important;
        justify-content: flex-end !important;

        img {
            max-width: 80% !important;
        }


    }


    .fs-heading {
        font-size: 40px;
    }

    .fs-heading2 {
        font-size: 20px;
    }

    .fs-heading3 {
        font-size: 32px ;
    }


    .fs-general {
        font-size: 18px;
    }
    .fs-general2 {

        /*!*24px*/
        font-size: 20px;
    }

    .homeslider-botton {
        padding-right: 1rem;
        position: absolute;
        top: 30%;
        right:0%;
        transform: rotate(-30deg);
    }

    .contact-form {
        transform: translateY(20%);
    }
}



