* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    /* height: 4000px; */
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #fff;
}

body.isLoading {
    overflow: hidden;
}

body::-webkit-scrollbar {
    width: 12px;
    /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: rgba(175, 173, 173, 0.59);
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: #feeee2;
    /* color of the scroll thumb */
    border-radius: 5px;
    /* roundness of the scroll thumb */
    border: 1px solid gray;
    /* creates padding around scroll thumb */
}

.loader {
    z-index: 999;
    width: 100%;
    height: 100vh;
    background: #feeee2;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    font-size: 3rem;
}

.loader img {
    width: 200px;
    animation: animatename alternate-reverse .7s linear infinite;
}

@keyframes animatename {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.disabled {
    opacity: .6;
    pointer-events: none;
}

.btn-primary:active:focus,
.btn-close:focus {
    box-shadow: 0 0 0 .25rem #e8bb6a;
}

button:focus:not(:focus-visible) {
    outline: 0;
    color: rgb(0, 0, 0);
    border-color: rgb(232 187 106);
}

/* NAVBAR */

.navbar-section {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
}

.bg-light {
    background-color: rgb(254 238 226) !important;
    height: 70px;
    box-shadow: 0px 1px 9px gray;
}

.navbar-section .dropdown-menu {
    min-width: 5rem;
}

.navbar-section .dropdown-menu li {
    background: #feeee2;
    text-align: center;
    cursor: pointer;
}


.navbar-mobile {
    display: none;
    background: #feeee2;
}

.btn-mood-mobile {
    display: none;
}

.li-mood {
    align-items: center;
}

.btn-mood-desktop {
    display: flex;
}

.mood {
    width: 55px;
    height: 25px;
    background: rgb(255 253 252);
    border-radius: 20px;
    box-shadow: 0 0 5px #8f8686;
    margin-left: 1rem;
    position: relative;
    transition: .5s;
    cursor: pointer;
}

.mood .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8bb6a;
    width: 27px;
    height: inherit;
    border-radius: 20px;
    position: absolute;
    right: auto;
    transition: .5s;
    transform: translateX(0);
    left: 0;
}


/* NAVBAR */

/* START HERO */
.hero {
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #feeee2;
    background-image: url(../images/hero.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position-y: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 9rem;
    background-attachment: fixed;

}

.hero h1 {
    font-size: 4rem;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.7rem;
}

.hero button,
.contacts button {
    font-size: 1.4rem;
    background: #e8bb6a;
    color: #fff;
    border-radius: 30px;
    padding: 5px 30px;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #ede8de;
    outline: 0;
    box-shadow: 0 0 0 0.15rem #e8bb6a;
}



/* END HERO */


/* STARE WHAT-CAN-DOES  */

.what-can-does {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2rem 0;
    gap: 2rem;
}

.what-can-does h2 {
    margin: 1rem auto;
}

h2 {
    text-transform: uppercase;
    margin: 3rem 0;
    background: #feeee2;
    padding: 1rem;
}

.img-what-can-does {
    width: 400px;
}

.img-what-can-does img {
    width: 100%;
}

.what-can-does ul li {
    margin-top: .5rem;
}

/* END WHAT-CAN-DOES  */


/* START GALLARY  */

.gallary {
    position: relative;
}

.gallary .owl-item img {
    cursor: pointer;
}

.gallary .display-image {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #232323c7;
    z-index: 99;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.gallary .display-image img {
    padding: 10px;
    background-color: #e8bb6a;
    height: 55%;
    transform: scale(1);
    transition: .5s;
}

.gallary .display-image .slide-controls {
    position: absolute;
    color: #fff;
    background: #433d3d;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.gallary .display-image .slide-controls svg {
    transition: .5s;
    transform: scale(1.4);
    fill: #e8bb6a;
}

.gallary .display-image .slide-controls:hover svg {
    transition: .5s;
    transform: scale(2.3);
}

.gallary .display-image .slide-controls.close {
    top: 55px;
    right: 50px;
}

.gallary .display-image .slide-controls.next {
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
}

.gallary .display-image .slide-controls.prev {
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
}

.gallary #demos .owl-carousel .item {
    height: 10rem;
    background: #4DC7A0;
    padding: 1rem;
}

.gallary .owl-carousel .item {
    height: 320px;
}

.gallary .owl-carousel .item img {
    height: 100%;
}

.owl-nav button span {
    font-size: 2rem;
    width: 50px;
    height: 50px;
}

.owl-nav button span:hover {

    color: #000;
}

.owl-theme .owl-nav [class*=owl-] {
    transition: .5s;

}

.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: transparent !important;
    transform: scale(1.1);
}

/* END GALLARY  */

/* STRAT CAMERA'S KIND  */
.camera-kind {
    margin: 4rem 0;
}

.camera-kind .filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.camera-kind .filter .kind-camera {
    background: #e8bb6a;
    width: 80px;
    text-align: center;
    padding: 4px 8px;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    transition: .5s;
    font-size: 1.4rem;

}

.camera-kind .filter .kind-camera.active {
    background: #d89621;

}

.camera-kind .cameras {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}


.camera-kind .cameras .camera-box {
    width: 300px;
    height: 270px;
    border-radius: 15px;
    border: 2px solid #d89621;
    overflow: hidden;
    position: relative;
    background: #feeee2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camera-kind .cameras .overlay-camera {
    position: absolute;
    top: -280px;
    left: 0;
    width: inherit;
    height: inherit;
    background-color: #00000070;
    transition: .5s;
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;

}

.camera-kind .cameras .camera-box:hover .overlay-camera {
    top: 0;
}

.camera-kind .cameras .camera-box img {
    transition: .5s;
}

.camera-kind .cameras .camera-box:hover img {
    transform: scale(1.1);
}

.camera-kind .cameras .camera-box img {
    width: 100%;
    border-radius: inherit;
}

.camera-kind .cameras .camera-box .btn-primary {
    background-color: #d89621;
    border-color: #ffffff;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus,
.primary:active:focus {
    color: #fff;
    background-color: #d7d10b;
    border-color: #FF5722;
    box-shadow: 0 0 0 .25rem rgba(49, 131, 253, 0.001);
}

.camera-kind .cameras .camera-box .modal-body img {
    width: 60%;
    display: block;
    margin: 0 auto;
}

/* END CAMERA'S KIND  */


/* END TESTMONIALS  */
.testmonials .owl-carousel.owl-drag .owl-item {
    background-color: #feeee2;
    display: flex;
    justify-content: center;
    padding: 1rem .5rem;
    box-shadow: 0 0 4px gray;
}

.testmonials .owl-carousel.owl-drag .owl-item .item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testmonials .owl-carousel.owl-drag .owl-item .item p {
    text-align: center;
}

.testmonials .owl-carousel .owl-item img.avatar {
    width: 65px;

}

/* END TESTMONIALS  */


/* START CONTACT US */
.contacts .contacts-col-parent {
    gap: 3rem;
    justify-content: center;
}

.contacts .half-col {
    background: #feeee2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 5px #8080806b;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-media .icon {
    background: #e8bb6a;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 50%;
    transition: .5s;
    transform: scale(1);

}

.social-media .icon:hover {
    transform: scale(1.2);
}

.social-media .icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #feeee2;
    text-decoration: none;
}

.social-media .icon svg {
    height: 25px;
    width: 100px;
}

/* END CONTACT US */


/* START FOOTER   */
.footer {
    background-color: #e8bb6a;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    color: #fff;
}

.footer p {
    margin: 0;
}

/* END FOOTER   */




/** CHANGE MOOD  */
body.dark-mood {
    transition: .4s;
    background-color: #000;
}

body.dark-mood .modal-content {
    background-color: #514d4d;
    color: #fff;
    box-shadow: 0 0 14px #fff;
}

body.ar-direction {
    font-family: "Amiri", serif;
    font-weight: 700;
    font-style: normal;
}

body.ar-direction .btn-close {
    color: #fff9f9;
    background-color: #e2e9ef;
    margin-left: 0;
}

body.dark-mood .owl-nav button span {
    font-size: 2rem;
    background: #f7f7f7;
    padding: 0 22px 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1.6;
}

body.dark-mood h2,
body.dark-mood .testmonials .owl-carousel.owl-drag .owl-item,
body.dark-mood .contacts .half-col,
body.dark-mood .navbar-mobile,
body.dark-mood .camera-kind .cameras .camera-box {
    background: #f7f7f7;
}

body.dark-mood .navbar-light .navbar-toggler {
    background: white;
}

body.dark-mood .bg-light {
    background-color: #000 !important;
    height: 70px;
    box-shadow: 0px 1px 9px gray;
}

body.dark-mood .bg-light * {
    color: #fff !important;
}

body.dark-mood .navbar-mobile {
    background: #544e4e;
}

body.dark-mood ul li {
    color: #fff;
}

body.dark-mood .lang-btn {
    color: #000 !important;
}

/** CHANGE MOOD  */

.owl-carousel .owl-stage-outer {
    direction: ltr;
}

.ar-direction {
    direction: rtl;
}

.en-direction {
    direction: ltr;
}

.en-direction .navbar-brand {
    margin-right: auto;
    margin-left: 0;
}

.ar-direction .navbar-brand {
    margin-right: 0;
    margin-left: auto;
}

.ar-direction .hero {
    padding-right: 9rem;
}

.ar-direction ul:not(.dropdown-menu) {
    padding-right: 2rem;
    padding-left: 0;
}
.en-direction .dropdown-menu.show {
    font-family: "Amiri", sans-serif;
}
.ar-direction .dropdown-menu.show {
    font-family: "Titillium Web", sans-serif;
}

.ar-direction .offcanvas-body ul {
    padding-right: 0.5rem;
    padding-left: 0;
}

.ar-direction .hero { 
    background-image: url(../images/hero-ar.jpeg); 

}