@font-face {
    font-family: 'Roboto Slab';
    src: url('../font/roboto-slab/RobotoSlab-Bold.woff2') format('woff2'),
        url('../font/roboto-slab/RobotoSlab-Bold.woff') format('woff'),
        url('../font/roboto-slab/RobotoSlab-Bold.svg#RobotoSlab-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('../font/roboto-slab/RobotoSlab-Light.woff2') format('woff2'),
        url('../font/roboto-slab/RobotoSlab-Light.woff') format('woff'),
        url('../font/roboto-slab/RobotoSlab-Light.svg#RobotoSlab-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('../font/roboto-slab/RobotoSlab-Regular.woff2') format('woff2'),
        url('../font/roboto-slab/RobotoSlab-Regular.woff') format('woff'),
        url('../font/roboto-slab/RobotoSlab-Regular.svg#RobotoSlab-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('../font/roboto-slab/RobotoSlab-Thin.woff2') format('woff2'),
        url('../font/roboto-slab/RobotoSlab-Thin.woff') format('woff'),
        url('../font/roboto-slab/RobotoSlab-Thin.svg#RobotoSlab-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
/* begin:: basics */

:root {
    --primary-color : #231f20;
    --secondary-color : #e7e8e9;
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) { 
    html {
        /* Typography Block  */
        font-size: 87%;
    }
}



body {
    /* Typography Block  */
    font-family: 'Roboto Slab';
    color: var(--primary-color);

    /*Structure Block*/
    min-height: 100vh;
}

*:focus {
    /*Structure Block*/
    outline: 0 !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.form-control {
    /*Structure Block*/
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-color: var(--primary-color) !important;
    box-shadow: none !important;

    /* Typography Block  */
    color: var(--primary-color);
    font-size: .87rem;
}

main {
    width: 100%;
}

a,
a:hover,
button:hover,
button:focus,
button {
    /*Structure Block*/
    box-shadow: none !important;


    /* Modifire Block  */
    transition: all .3s ease-in-out;

}

.btn-outline-secondary {
    /*Structure Block*/
    border: 1px solid var(--primary-color);

    /* Typography Block  */
    color: var(--primary-color);
}

.btn-outline-secondary i {
    /* Typography Block  */
    line-height: normal;
}

.btn-outline-secondary--white {
    /*Structure Block*/
    border: 1px solid #fff;

    /* Typography Block  */
    color: #fff;
}

.card-img-overlay {
    /*Structure Block*/
    background: #0000001c;

    /* Modifire Block  */
    z-index: 9;

}

.btn-outline-secondary:hover {
    /*Structure Block*/
    background-color: var(--primary-color);
    border-color: var(--primary-color);

    /* Typography Block  */
    color: #fff;
}

.form-control::placeholder {
    /* Typography Block  */
    color: var(--primary-color);
}

.btn-primary {
  /*Structure Block*/
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;

  /* Typography Block  */
  color: #fff;

  /* Modifire Block  */
  opacity: .97;
}

.btn-primary:focus,
.btn-primary:hover {
    
  /*Structure Block*/
  background-color: var(--primary-color);
  border-color: var(--primary-color);

    /* Modifire Block  */
    opacity: 1;
}

.lang--ar {
    /* Typography Block  */
    font-family: 'Tajawal', sans-serif;
    font-weight: 500;
}

.lang--en {
    /* Typography Block  */
    font-family: 'Roboto Slab';
}


/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    .lang--ar {
        /* Positioning Block  */
        position: relative;
        top: 4px;
    }
}

.hidden {
    opacity: 0;
    visibility: hidden;
}

/* end:: basics */

/* begin header  */
.navbar-nav .nav-link {
    /* Typography Block  */
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    /*Structure Block*/
    content: '';
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    display: block;

    /*Modifire Block*/
    transform:  scale(0);
    -webkit-transform:  scale(0);
    -moz-transform:  scale(0);
    -ms-transform:  scale(0);
    -o-transform:  scale(0);
    transition:all .3s ease-in-out ;
    -webkit-transition:all .3s ease-in-out ;
    -moz-transition:all .3s ease-in-out ;
    -ms-transition:all .3s ease-in-out ;
    -o-transition:all .3s ease-in-out ;
    transform-origin: left;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {

    /*Modifire Block*/
    transform:none ;
    -webkit-transform:none ;
    -moz-transform:none ;
    -ms-transform:none ;
    -o-transform:none ;
    transition:all .3s ease-in-out ;
    -webkit-transition:all .3s ease-in-out ;
    -moz-transition:all .3s ease-in-out ;
    -ms-transition:all .3s ease-in-out ;
    -o-transition:all .3s ease-in-out ;
}

.navbar-light .navbar-toggler-icon {
    /*Structure Block*/
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, .98' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}
/* End:: header  */


/* begin::hero section  */

.img-wrapper,
.video-wrapper {
    /* Modifire Block  */
    overflow: hidden;
}

.hero-section {
    /*Structure Block*/
    height: calc(100vh - (72px + 145px));

    /* Positioning Block  */
    position: relative;
    z-index: 3;

}

.hero-image {
    /*Structure Block*/
    object-fit: cover;
    
    /*Modifire Block*/
    animation: leaves 28.95s forwards infinite ease-in-out ;
    -webkit-animation: leaves 28.95s forwards infinite ease-in-out ;
}

.hero__play-btn {

    /* Positioning Block  */
    position: absolute;

    /* Typography Block  */
    color: #fff;

    /*Structure Block*/
    width: 55px;
    height: 55px;
    background: #ffffff5e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__play-btn::before {

    /* Positioning Block  */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    /*Structure Block*/
    content: '';
    border: #e1e1e1 solid 6px;
    border-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;

    /* Modifire Block  */
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    -webkit-animation-name: hvr-ripple-out ;
    animation-name: hvr-ripple-out ;
    animation-delay: 0;
}

.hero__play-btn:hover {
   /* Typography Block  */
   color: #fff;
}

.hero__play-btn i {
    /* Positioning Block  */
    position: relative;
    left: 2px;

    /* Typography Block  */
    font-size: 1.3rem;
}

/* end::hero section  */

/* begin:: call to actions   */
.call-to-actions {
    /*PositioningBlock*/position: fixed;
    top: 50vh;
    right: 6px;

    /*Modifire Block*/
    z-index: 3;
    transition:all .3s ease-in-out ;
    -webkit-transition:all .3s ease-in-out ;
    -moz-transition:all .3s ease-in-out ;
    -ms-transition:all .3s ease-in-out ;
    -o-transition:all .3s ease-in-out ;

}



.call-to-actions .action .btn,
.call-to-actions .action a  {

    /*Structure Block*/
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f00;

    /* Typography Block  */
    color: #fff;
    font-size: 2rem;

}

.call-to-actions .action.whatsapp a  {
    /*Structure Block*/
    background-color: #70b850;
}

.call-to-actions .action.phone a  {
    /*Structure Block*/
    background-color: #ac1f23;
}

.call-to-actions .action.mail .btn  {
    /*Structure Block*/
    background-color: #4d8ac9;
}

.call-to-actions .action .btn img,
.call-to-actions .action a img {
   /*Structure Block*/
   margin: auto;
   display: block;
}

/* begin:: about section   */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    .about {
        padding-top: 1rem !important;
    }   
}
/* end:: about section   */


/* Begin:: Galleryt section */
.swiper {
    /* Structure Block  */
    width: 100%;
    height: auto;
    min-height: auto;
}

.swiper-slide {
    /* Modifire Block  */
    overflow: hidden;
}

.swiper-slide > div::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255,255,255,.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.swiper-slide:hover > div::before {
        /* Modifire Block  */
        -webkit-animation: circle .95s;
        animation: circle .95s;
}

.swiper-slide:hover img {
    /* Modifire Block  */
    transform: scale(1.2);
    transition: .9s ease-in-out;
}

.swiper .swiper-slide img {
    /* Structure Block  */
    height: 100%;
    object-fit: cover;

    /* Modifire Block  */
    transition: .9s ease-in-out;

}

.swiper-button.swiper-button-next img {
    /* Modifire Block  */
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}


.swiper-button::after {
    display: none;
}


.gallery .feature {
   /*Structure Block*/
   background-color: var(--secondary-color) ;
}

/* Medium devices (tablets, 768px and up) Large devices (desktops, less than 1200px) */
@media (min-width: 768px) and (max-width: 1199.98px) { 
    .gallery .feature > div {
        /* Typography Block  */
        font-size: .85rem;
    }
}



.gallery .feature strong {
    /* Typography Block  */
    font-size: 1.4rem;
}
/* End:: Galleryt section */


/* begin::contact section  */
.contact__call-to-action .action {
    /*Structure Block*/
    background-color: #f3f3f3;
}

.contact__call-to-action .action.whatsapp {
    /*Structure Block*/
    border-inline-end: 8px solid #70b850;
}

.contact__call-to-action .action.phone {
    /*Structure Block*/
    border-inline-start: 8px solid #ac1f23;
}

.contact__call-to-action .action .icon {

    /*Positioning Block*/
    position: absolute;

    /*Structure Block*/
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Typography Block  */
    font-size: 1.5rem;
    color: #fff;
}


/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) { 
    .contact__call-to-action .action .icon {
        /*Structure Block*/
        width: 43px;
        height: 43px;
    }
}

.contact__call-to-action .action.whatsapp .icon {
    /*Positioning Block*/
    left: 0;

   /*Modifire Block*/
   transform: translateX(50%);
   -webkit-transform: translateX(-50%);
   -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
   -o-transform: translateX(-50%);

    /*Structure Block*/
    background-color: #70b850;
    
}

.contact__call-to-action .action.phone .icon {
    /*Positioning Block*/
    right: 0;     

    /*Modifire Block*/
    transform: translateX(-50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
 
    /*Structure Block*/
    background-color: #ac1f23;

    /* Typography Block  */
    font-size: 1.3rem;
    color: #fff;
}

.contact__call-to-action .action a {

    /* Typography Block  */
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;

    /*Structure Block*/
    min-width: 157px;

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) { 
  
    .contact__call-to-action .action a  {
        /*Structure Block*/
        min-width: 123px;
    }
}

.contact .section-title h4 {
     /* Typography Block  */
    line-height: 18px;
    font-size: 1.25rem;
}
/* end::contact section  */



/* Begin:: Other featured projects */
.see-also .card img {
    /*Structure Block*/
    height: 328px;
    object-fit: cover;

    /* Modifire Block  */
    transition: .9s ease-in-out;
    
}

.see-also .card {
    /* Modifire Block  */
    overflow: hidden;
}

.see-also .card::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255,255,255,.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.see-also .card:hover::before {
    /* Modifire Block  */
    -webkit-animation: circle .95s;
    animation: circle .95s;
}

.see-also .card:hover img {
    /* Modifire Block  */
    transform: scale(1.2);
    transition: .9s ease-in-out;
}

.see-also .back {
    /* Typography Block  */
    font-size: 1.1rem;

    /*Structure Block*/
    padding: 0.7rem 1.3rem!important;
}
/* End:: Other featured projects */


/* Begin:: animation  */

@keyframes leaves {
    0% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
        -moz-transform: scale(1.0);
        -ms-transform: scale(1.0);
        -o-transform: scale(1.0);
    }

    50% {
        transform: scale(1.5);
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
}


@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 150%;
		height: 150%;
		opacity: 0;
	}
}

/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
    100% {
      top: -12px;
      right: -12px;
      bottom: -12px;
      left: -12px;
      opacity: 0;
    }
}

@keyframes hvr-ripple-out {
    100% {
      top: -12px;
      right: -12px;
      bottom: -12px;
      left: -12px;
      opacity: 0;
    }
}
/* End:: animation  */






