:root {
    --main: #045097;
    --text: #7b8994;
    --sec: #f5d151;
    --white: #fff;
    --black: #000;
    --animation: 2s ease-in-out infinite;
}

@font-face {
    font-family: "The Year of Handicrafts";
    src:
        url("../../fonts/TheYearofHandicrafts-Regular.woff2") format("woff2"),
        url("../../fonts/TheYearofHandicrafts-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Bold */
@font-face {
    font-family: "The Year of Handicrafts";
    src:
        url("../../fonts/TheYearofHandicrafts-Bold.woff2") format("woff2"),
        url("../../fonts/TheYearofHandicrafts-Bold.woff") format("woff");

    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roses Bolero";
    src:
        url("../../fonts/Roses\ Bolero.woff2") format("woff2"),
        url("../../fonts/Roses\ Bolero.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    font-family: "The Year of Handicrafts";
}

/* body.main-page-layout {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden; }


.page-blob-container {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-blob-blue {
    width: 45rem;
    height: 35rem;
    top: -5rem;
    left: -10rem;
    background: #e6f3fe;
}

.hero-blob-yellow {
    width: 45rem;
    height: 35rem;
    top: -5rem;
    right: -10rem;
    background: #fffce5;
}

main, section {
    background: transparent !important;
    position: relative;
    z-index: 1;
}

body {
    overflow-x: hidden;
    position: relative;
} */

html {
    font-size: 16px; /* افتراضي */
    scroll-behavior: smooth;
}

@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 12px;
    }
}

html {
    direction: rtl;
}
/* floatet icons */
/* whats app plugin  */
.whats-float,
.facebook-float,
.phone-float {
    position: fixed;
    inset-inline-end: 20px;

    width: 3.1rem;
    height: 3.1rem;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    cursor: pointer;
    overflow: hidden;

    border-radius: 50%;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    vertical-align: middle;
}
.whats-float {
    bottom: 15.6rem;

    background-color: #25d366;

    /* Pulse effect */
    animation: pulse 2s infinite;
}
.facebook-float {
    bottom: 10.9rem;

    background-color: #3b5998;

    /* Pulse effect */
    animation: pulse1 2s infinite;
}
.phone-float {
    bottom: 6.25rem;

    background-color: rgb(117 135 144 / 70%);

    /* Pulse effect */
    animation: pulse2 2s infinite;
}
.whats-float i,
.facebook-float i,
.phone-float i {
    font-size: 1.6rem;
    color: white;
    line-height: 3.1rem;
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align: center;
    font-weight: bolder;
}

/* Hover spin */
.whats-float:hover i,
.facebook-float:hover i,
.phone-float:hover i {
    transform: rotate(360deg);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
@keyframes pulse1 {
    0% {
        box-shadow: 0 0 0 0 #3b58989a;
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgb(117 135 144 / 30%);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* go to top btn */
.go-top {
    position: fixed;
    bottom: 30px;
    inset-inline-end: 20px;
    border: none;
    border-radius: 30px;
    background-color: var(--main);
    color: white;
    width: 3.1rem;
    height: 3.1rem;
}