
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.9s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background:rgba(251, 203, 43, 1);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 120px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 250;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(251, 203, 43, 1);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/

/*** copyright end ***/
.section-title {
    position: relative;
    text-align: center;
    margin: 40px 0; /* المسافة من الأعلى والأسفل */
}

.box {
    position: absolute; /* يجعله خلف النص */
    top: 50%; /* وضعه في المنتصف العمودي */
    left: 50%; /* وضعه في المنتصف الأفقي */
    transform: translate(-50%, -50%); /* لتحسين المركز */
    border: 2px solid #f95e01; /* لون المربع */
    width: 100px; /* عرض المربع */
    height: 140px; /* ارتفاع المربع */
    z-index: 0; /* يجعل المربع خلف النص */
}

.section-title__tagline-box {
    position: relative; /* يجعل النص يظهر فوق المربع */
    z-index: 1; /* يجعل النص فوق المربع */
    color: gray; /* لون النص */
    margin-bottom: 10px; /* مسافة بين النصين */
}

.display-4 {
    font-weight: bold; /* لجعل النص بارزاً */
    color: black; /* لون النص */
}

/*** Footer Start ***/

footer {
    background-color: #1f1f1f;
    	padding-top: 0;
	padding-bottom: 0;
}

footer hr {
	border-top-color: rgba(47, 47, 47, 0.2);
	margin-top: 0;
	margin-bottom: 0
}

.widgets-contact {
	background-color: #161616;
	padding-top: 40px;
	padding-bottom: 40px;
}

.widgets-contact p {
	font-size: 14px;
	font-weight: 500;
	line-height: 28px;
	margin-bottom: 0;
}

.widgets-contact .widget-contact-icon {
	margin-right: 20px;
	margin-left: 20px;
}

.widgets-contact .widget-contact-icon i {
	font-size: 40px;
	color: #f9f9f9
}

.widgets-contact .widget-contact-icon:after {
	content: "";
	width: 2px;
	height: 22px;
	margin-left: 20px;
	background-color: #ffc527;
	display: inline-block
}

.widgets-contact .widget-contact-info p:last-child {
	color: #828282;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 23px;
}

.widgets-contact .widget {
	padding-left: 40px;
	border-left: 2px solid #1f1f1f
}

.widgets-contact .widget:first-child {
	border-left: none
}

.widgets-contact.bg-theme {
	background-color: #ffc527;
}

.widgets-contact.bg-theme .widget-contact-icon:after {
	background-color: #fff;
}

.widgets-contact.bg-theme .widget-contact-icon i {
	color: #fff
}

.widgets-contact.bg-theme .widget-contact-info p:last-child {
	color: #1f1f1f;
}

.widgets-links {
	padding-top: 80px;
	padding-bottom: 80px;
}

.widgets-links h5 {
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 10px;
}

.widgets-links p {
	color: #9e9e9e;
	font-size: 14px;
	font-weight: 400;
	line-height: 23px;
}

.widgets-links .widget-about {
	padding-left: 0
}

.widgets-links .widget-about .widget-about-logo {
	padding-top: 47px
}

.widgets-links .widget-about .widget-about-info {
	padding-left: 76px;
}

.widgets-links ul li {
	margin-bottom: 0;
}

.widgets-links ul li a {
	color: #7f7f7f !important;
	font-size: 13px;
	font-weight: 400;
	line-height: 26px;
}

.widgets-links ul li a:hover {
	color: #ffc527 !important
}

.widget-social {
	background-color: #1c1c1c;
	padding-top: 34px;
	padding-bottom: 34px;
	padding-left: 0
}

.widget-social p {
	font-size: 14px;
	font-weight: 500;
	line-height: 23px;
	color: #f9f9f9;
}

.copyrights {
	padding-top: 40px;
	padding-bottom: 40px;
}

.widget-social-icon a {
	margin-left: 8px;
	width: 42px;
	height: 42px;
	line-height: 42px;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
	background-color: #161616;
	font-size: 15px;
	font-weight: 400;
	color: #9e9e9e;
	display: block;
	float: left;
	text-align: center;
	margin-top: 2px;
	overflow: hidden
}

.widget-social-icon a i {
	display: block;
	position: relative;
	line-height: 42px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.widget-social-icon a:hover {
	background-color: #ffc527;
	color: #ffffff
}

.widget-social-icon a:hover i:first-child {
	margin-top: -42px;
}

.widget-social-icon a i:last-child {
	color: #ffffff
}

.widget-newsletter-form form {
	margin-bottom: 0;
	height: 42px;
	line-height: 42px;
}

.widget-newsletter-form form .input-group {
	width: 390px;
}

.widget-newsletter-form form .form-control {
	background-color: transparent;
	color: #9e9e9e;
	border: 2px solid #292929;
	border-radius: 0;
	font-size: 12px;
	font-style: italic;
	width: 320px;
	height: 42px;
	line-height: 42px;
	padding-left: 16px;
	font-weight: 400;
}

.widget-newsletter-form form .form-control:focus {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

.widget-newsletter-form form .btn {
	background-color: #292929;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	color: #fff;
	text-transform: uppercase;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	padding: 0 20px;
	height: 42px;
	line-height: 42px;
	text-align: center
}

.widget-newsletter-form form .btn:hover,
.widget-newsletter-form form .btn:focus {
	border-color: transparent;
	color: #ffc527
}

.copyrights p {
	color: #9b9b9b;
	line-height: 24px;
	font-weight: 400;
	margin-bottom: 0;
	font-size: 13px;
}

.copyrights a {
	color: #ffc527
}

.copyrights a:hover,
.copyrights a:focus,
.copyrights a:active {
	color: #fff !important
}

/* footer #5 */
.footer-5 .widget-social {
	background-color: transparent;
	border-bottom: 1px solid rgba(47, 47, 47, 0.2);
}

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) and (max-width : 767px) {

.widgets-links {
	padding-top: 30px;
	padding-bottom: 30px;
}

.widgets-contact .widget-contact-info p:last-child {
	font-size: 12px;
}

.widgets-contact .widget {
	margin-bottom: 24px;
}

.widgets-contact .widget:last-of-type {
	margin-bottom: 0
}

.widgets-links .widget-about .widget-about-logo {
	padding-right: 0;
	padding-top: 0;
	margin-bottom: 12px;
}

.widgets-links .widget-about .widget-about-info {
	padding: 0
}

.widget-social-icon a {
	margin-bottom: 15px;
	text-align: center
}

.widget-newsletter-form form .input-group {
	width: 100%;
}

.widget-newsletter-form form .form-control {
	width: 100%
}

.widgets-links ul li {
	margin-bottom: 10px;
}

.widget-social-icon {
	margin: auto;
	margin-left: auto;
}

.widget-social-icon a {
	display: inline-block;
	float: none
}
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) and (max-width : 991px) {

.widgets-contact .widget,
.widget-about {
	margin-bottom: 24px;
}

.widgets-links {
	padding-top: 40px;
	padding-bottom: 40px;
}
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
    background-color: var(--surface-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq .faq-item:last-child {
    margin-bottom: 0;
  }
  
  .faq .faq-item:hover {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }
  
  .faq .faq-item .faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
  }
  
  .faq .faq-item .faq-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
    flex: 1;
    padding-right: 20px;
    transition: color 0.3s ease;
  }
  
  .faq .faq-item .faq-header .faq-toggle {
    font-size: 20px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
  }
  
  .faq .faq-item .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }
  
  .faq .faq-item .faq-content p {
    padding: 0 25px 20px;
    margin: 0;
    line-height: 1.6;
    color: var(--default-color);
    font-size: 15px;
  }
  
  .faq .faq-item.faq-active .faq-header h3 {
    color: var(--accent-color);
  }
  
  .faq .faq-item.faq-active .faq-header .faq-toggle {
    transform: rotate(180deg);
  }
  
  .faq .faq-item.faq-active .faq-content {
    max-height: 300px;
    overflow: auto;
  }
  
  .faq .faq-contact-card {
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
    border-radius: 10px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    color: var(--contrast-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .faq .faq-contact-card .card-icon {
    margin-bottom: 20px;
  }
  
  .faq .faq-contact-card .card-icon i {
    font-size: 48px;
    color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  }
  
  .faq .faq-contact-card .card-content h3 {
    color: var(--contrast-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .faq .faq-contact-card .card-content p {
    color: color-mix(in srgb, var(--contrast-color), transparent 10%);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .faq .faq-contact-card .contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: auto;
  }
  
  .faq .faq-contact-card .contact-options .contact-option {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 8px;
    color: var(--contrast-color);
    transition: all 0.3s ease;
  }
  
  .faq .faq-contact-card .contact-options .contact-option:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
  }
  
  .faq .faq-contact-card .contact-options .contact-option i {
    font-size: 20px;
    margin-right: 12px;
  }
  
  .faq .faq-contact-card .contact-options .contact-option span {
    font-weight: 500;
    font-size: 16px;
  }
  
  @media (max-width: 991px) {
    .faq .row {
      flex-direction: column-reverse;
    }
  
    .faq .faq-contact-card {
      margin-top: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .faq .faq-item .faq-header {
      padding: 15px 20px;
    }
  
    .faq .faq-item .faq-header h3 {
      font-size: 16px;
    }
  
    .faq .faq-item .faq-content p {
      padding: 0 20px 15px;
      font-size: 14px;
    }
  
    .faq .faq-contact-card {
      padding: 30px 20px;
    }
  
    .faq .faq-contact-card .card-icon i {
      font-size: 40px;
    }
  
    .faq .faq-contact-card .card-content h3 {
      font-size: 24px;
    }
  
    .faq .faq-contact-card .card-content p {
      font-size: 15px;
    }
  
    .faq .faq-contact-card .contact-options .contact-option {
      padding: 12px 15px;
    }
  
    .faq .faq-contact-card .contact-options .contact-option i {
      font-size: 18px;
    }
  
    .faq .faq-contact-card .contact-options .contact-option span {
      font-size: 15px;
    }
  }
  

          /* Basic Reset */
          body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: Arial, sans-serif;
        }

        /* Section Styles */
        .construction-section {
            position: relative;
            width: 100%;
            height: 700px; /* Adjust as needed */
            overflow: hidden;
        }

        /* Background Slider Styles */
        .background-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .slide {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        /* Info Card Styles */
        .info-card {
            position: absolute;
            top: 40%;
            left: 15%;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 30px;
            /* border-radius: 5px; */
            text-align: left;
            width: 300px; /* Adjust as needed */
        }

        .info-card h2 {
            font-size: 24px;
            margin-bottom: 10px;
            color: #333;
        }

        .info-card p {
            font-size: 14px;
            line-height: 1.4;
            color: #555;
            margin-bottom: 20px;
        }

        .info-card .buttons {
            display: flex;
            gap: 10px;
        }

        .info-card .btn {
            padding: 10px 20px;
            /* border-radius: 5px; */
            text-decoration: none;
            color: white;
            background-color: #f95e01;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .info-card .btn:hover {
            background-color: #0056b3;
        }

         .info-card .btn.secondary {
            background-color: transparent;
            color: #333;
            border: 1px solid #333;
        }

        .info-card .btn.secondary:hover {
            background-color: #f0f0f0;
        }

        /* Arrow Controls Styles */
        .arrow-controls {
            position: absolute;
            bottom: 20px;
            left: 20px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .arrow {
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .arrow:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }


           /* Section Styles */
           .title {
            background-color: #f95e01; /* Yellow background */
            color: #333; /* Dark text */
            padding: 50px 20px;
            width: 80%;
            margin-left: 10%;
            text-align: center;
        }

        .title .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-around;
        }

        /* Icon Styles */
        .title .icon {
            font-size: 3em;
            color: white;
            margin-right: 20px;
        }

        /* Text Styles */
        .title h2 {
            font-size: 2em;
            margin-bottom: 10px;
            color: white;
        }

        .title p {
            font-size: 1.2em;
            color: white;
        }

        .title .text-content {
            text-align: left;
        }

        /* Button Styles */
        .title .buttons {
            display: flex;
            gap: 10px;
        }

        .title .btn {
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            color: #333;
            background-color: white;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .title .btn:hover {
            background-color: #f0f0f0;
        }

        .title .btn.secondary {
            background-color: #f95e01;
            color: #333;
            border: 2px solid #333;
        }

        .title .btn.secondary:hover {
            background-color: #f0f0f0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .title .container {
                flex-direction: column;
                text-align: center;
            }

            .title .icon {
                margin-bottom: 20px;
                margin-right: 0;
            }

            .title .text-content {
                text-align: center;
            }
        }


        /* الالبوم projects */
        /* Projects Section Styles */
#projects {
    padding: 80px 0;
}

.bg-gray {
    background-color: #f7f7f7;
}

/* Container Styles */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Heading Styles */
.heading {
    margin-bottom: 30px;
}

.heading-3 {
    position: relative;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.heading-bg {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
}

.heading-bg p {
    font-size: 16px;
    color: #777;
}

.heading-bg h2 {
    font-size: 36px;
    margin-top: 5px;
    color: #333;
}

/* Projects Filter Styles */
.projects-filter {
    margin-bottom: 30px;
}

.projects-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.projects-filter ul li {
    display: inline-block;
    margin: 0 10px;
}

.projects-filter ul li a {
    display: block;
    padding: 8px 15px;
    border: 1px solid #ddd;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.projects-filter ul li a:hover,
.projects-filter ul li a.active-filter {
    background-color: #337ab7;
    color: #fff;
    border-color: #337ab7;
}

/* Projects Item Styles */
#projects-all {
    position: relative;
    overflow: hidden;
}

.project-item {
    margin-bottom: 30px;
}

.project-img {
    position: relative;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.project-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.project-item:hover .project-hover {
    opacity: 1;
}

.project-meta {
    text-align: center;
    color: #fff;
}

.project-meta h6 {
    font-size: 14px;
    margin-bottom: 5px;
}

.project-meta h4 {
    font-size: 18px;
    margin-top: 0;
}

.project-meta h4 a {
    color: #fff;
    text-decoration: none;
}

.project-zoom {
    margin-top: 15px;
}

.project-zoom a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #337ab7;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-zoom a:hover {
    background-color: #fff;
    color: #337ab7;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .heading-bg h2 {
        font-size: 28px;
    }

    .projects-filter ul li {
        margin: 0 5px;
    }

    .project-item {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .project-item {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
    border: 0;
  }
  
  .menu .nav-link {
    background-color: var(--background-color);
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0 15px;
    padding: 10px 5px;
    transition: 0.3s;
    border-radius: 0;
    cursor: pointer;
    height: 100%;
    border: 0;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  }
  
  @media (max-width: 575px) {
    .menu .nav-link {
      margin: 0 10px;
      padding: 10px 0;
    }
  }
  
  .menu .nav-link i {
    padding-right: 15px;
    font-size: 48px;
  }
  
  .menu .nav-link h4 {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    font-family: var(--default-font);
  }
  
  @media (max-width: 575px) {
    .menu .nav-link h4 {
      font-size: 16px;
    }
  }
  
  .menu .nav-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
  }
  
  .menu .nav-link.active {
    background-color: var(--background-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
  }
  
  .menu .tab-content .tab-header {
    padding: 30px 0;
  }
  
  .menu .tab-content .tab-header p {
    font-size: 14px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
  }
  
  .menu .tab-content .tab-header h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
  }
  
  .menu .tab-content .menu-item {
    text-align-last: center;
  }
  
  .menu .tab-content .menu-item .menu-img {
    padding: 0 60px;
    margin-bottom: 15px;
  }
  
  .menu .tab-content .menu-item h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 5px;
    font-family: var(--default-font);
  }
  
  .menu .tab-content .menu-item .ingredients {
    font-family: var(--nav-font);
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 5px;
  }
  
  .menu .tab-content .menu-item .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }
  
  .testimonials .testimonial-item .testimonial-content {
    border-left: 3px solid var(--accent-color);
    padding-left: 30px;
  }
  
  .testimonials .testimonial-item .testimonial-img {
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
  }
  
  .testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0 0 10px 0;
  }
  
  .testimonials .testimonial-item .stars i {
    color: #f95e01;
    margin: 0 1px;
  }
  
  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
  }
  
  .testimonials .testimonial-item p {
    font-style: italic;
  }
  
  .testimonials .swiper-wrapper {
    height: auto;
  }
  
  .testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Events Section
  --------------------------------------------------------------*/
  .events .container-fluid {
    padding: 0;
  }
  
  .events .event-item {
    background-size: cover;
    background-position: cente;
    min-height: 600px;
    padding: 30px;
  }
  
  @media (max-width: 575px) {
    .events .event-item {
      min-height: 500px;
    }
  }
  
  .events .event-item:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
  }
  
  .events .event-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
    position: relative;
  }
  
  .events .event-item .price {
    color: #ffffff;
    border-bottom: 2px solid var(--accent-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
  }
  
  .events .event-item .description {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
  }
  
  .events .swiper-wrapper {
    height: auto;
  }
  
  .events .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .events .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
  }
  
  .events .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  }




  /* الفاصل الاول الاصفر */

  /* CTA Section Styles */
#cta-3 {
    padding: 80px 0;
    text-align: center;
    position: relative;
    color: #fff; /* Default text color for better readability on the overlay */
}

/* Background Overlay Styles */
.bg-overlay {
    position: relative;
}

.bg-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value for desired darkness */
    z-index: 1;
}

.bg-overlay-theme::before {
    background-color: #f95e01; /* Example theme color overlay */
}

.bg-section {
    background-size: cover;
    background-position: center;
}

/* Container Styles */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    position: relative; /* Ensure content is above the overlay */
    z-index: 2;
}

/* Heading Styles */
#cta-3 h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

/* Paragraph Styles */
#cta-3 p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #eee; /* Slightly lighter text for better contrast */
}

/* Signature Styles */
.signiture img {
    max-width: 150px; /* Adjust as needed */
    height: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #cta-3 h2 {
        font-size: 28px;
    }

    #cta-3 p {
        font-size: 16px;
    }
}

/* why yellowhats */
.shortcode-8 .feature {
    margin-bottom: 50px;
  }
.shortcode-8 .feature-icon.right {
    float: right;
  }
  .shortcode-8 .feature-icon.left {
    float: left;
  }
  .shortcode-8 .feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    display: block;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    background-color: #434343;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 40px;
    line-height: 70px;
  }

/* 
  *, ::before, ::after {
    box-sizing: border-box;
  } */

  .shortcode-8 .feature {
    margin-bottom: 50px;
  }
  @media (min-width: 992px) {
    .col-md-12 {
      width: 100%;
    }}
    @media (min-width: 992px) {
        .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
          float: left;
        }
      }


      
.rev_slider .btn {
	width: 100px;
	height: 30px;
	line-height: 30px;
	font-size: 12px;
}

.hero-slider .item {
	height: 500px;
	text-align: center
}

.hero-slide {
	width: 300px;
	height: auto;
	margin-top: 100px;
	padding: 30px 15px;
}

.hero-slide .slide-action a {
	width: 110px;
}

.slide-action .pull-right {
	float: none !important
}

.hero-3 .cta-form {
	margin-top: 0;
	width: 100%;
	height: auto
}

.hero-3 .cta-form .cta {
	padding-top: 20px;
	padding-bottom: 20px;
}

.hero-3 .cta-form .cta .cta-desc p {
	text-align: center !important
}

.hero-3 .cta-form .cta .cta-desc h5 {
	margin-bottom: 0
}


/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px)and (max-width : 767px ) {

.rev_slider h1 {
	font-size: 17px !important
}

.rev_slider .arrow {
	display: none
}

.rev_slider .btn {
	width: 100px;
	height: 40px;
	line-height: 40px;
	font-size: 12px;
}

.hero-slider .item {
	height: 550px;
	text-align: center
}

.hero-slide {
	margin-top: 100px;
}

.hero-3 .cta-form {
	margin-top: 0;
	width: 100%;
	height: auto
}

.hero-3 .cta-form .cta {
	padding-top: 20px;
	padding-bottom: 20px;
}

.hero-3 .cta-form .cta .cta-desc p {
	text-align: center !important
}

.hero-3 .cta-form .cta .cta-desc h5 {
	margin-bottom: 0
}
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) and (max-width : 991px) {

.rev_slider .arrow {
	height: 51px
}

.rev_slider .arrow:hover {
	height: 51px!important;
}

.rev_slider .arrow:before {
	line-height: 51px;
}

.hero-4 .arrow {
	display: none
}

.hero-4 .widgets-contact .widget {
	padding-left: 20px;
}

.hero-4 .widgets-contact .widget-contact-icon {
	margin-left: 0
}

.hero-4 .widget-contact-info {
	padding-left: 86px;
  
}

.hero-4 .widgets-contact p {
	font-size: 12px;
}

.hero-4 .widgets-contact p:last-child {
	font-size: 13px !important;
}

.hero-3 .cta-form {
	margin-top: 0;
	width: 300px;
	height: auto;
	margin-top: -116px;
}

.hero-3 .cta-form .cta {
	padding-top: 20px;
	padding-bottom: 20px;
}

.hero-3 .cta-form .cta i {
	font-size: 30px;
}

.hero-3 .cta-form .cta .cta-desc {
	margin-bottom: 0
}

.hero-3 .cta-form .cta .cta-desc p {
	text-align: center !important
}

.hero-3 .cta-form .cta .cta-desc h5 {
	margin-bottom: 0;
	font-size: 17px;
}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 991px) and (max-width : 1200px) {

.hero-4 .widgets-contact .widget {
	padding-left: 20px;
}

.hero-4 .widgets-contact .widget-contact-icon {
	margin-left: 0
}

.hero-4 .widget-contact-info {
	padding-left: 86px;
}

.hero-4 .widgets-contact p {
	font-size: 13px;
}

.hero-4 .widgets-contact p:last-child {
	font-size: 14px !important;
}

.hero-3 .cta-form {
	margin-top: -124px;
}
}

/*------------------------------------*\
#ABOUT-SECTION
\*------------------------------------*/

/* Shortcode #1 */

.shotcode-1 h3 {
	color: #5a5a5a;
	font-size: 18px;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
	margin-bottom: 30px;
	line-height: 26px;
}

.shotcode-1 p {
	color: #9e9e9e;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}

.shotcode-1 .btn {
	width: 170px;
}

.shotcode-1 .feature .feature-icon {
	color: #434343;
	font-size: 40px;
	margin-bottom: 0
}

.shotcode-1 .feature h4 {
	color: #434343;
	font-size: 16px;
	font-weight: 700;
	line-height: 25px;
	text-transform: uppercase;
}

.shotcode-1 .feature p {
	color: #9e9e9e;
	font-size: 14px;
	font-weight: 500;
	line-height: 23px;
}

/* Shortcode #2 */
.shortcode-2 .feature,
.shortcode-6 .feature {
	background-color: #fff;
	box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	-moz-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	-webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	padding: 16px 0 16px 20px;
	margin-bottom: 0;
}

.shortcode-2 .feature .feature-icon,
.shortcode-6 .feature .feature-icon {
	margin-bottom: 10px
}

.shortcode-2 .feature h4,
.shortcode-6 .feature h4 {
	color: #434343;
	font-size: 15px;
	font-weight: 700;
	line-height: 25px;
	text-transform: uppercase;
	margin-bottom: 0
}

.shortcode-2 p {
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}

/* Shortcode #3 */
.shortcode-3 .feature p {
	font-size: 14px;
	font-weight: 500;
	line-height: 23px;
	margin-bottom: 0
}

.shortcode-3 h4 {
	color: #434343;
	font-size: 16px;
	font-weight: 700;
	line-height: 25px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

/* Shortcode #4 */

/* Shortcode #5 */
.shortcode-5 .feature {
	margin-bottom: 50px;
}

.shortcode-5 .feature.last {
	margin-bottom: 0
}

.shortcode-5 .feature h4 {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.shortcode-5 .feature p {
	font-size: 14px;
	font-weight: 500;
	line-height: 23px;
	margin-bottom: 0;
}

.shortcode-5 .feature img {
	height: 415px;
}

.shortcode-5 .accordion .panel .panel-body {
	font-size: 14px;
	font-weight: 500;
	line-height: 25px;
}

/* Shortcode #6 */
.shortcode-6 p {
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: 0
}

.shortcode-6 .feature-2 {
	margin-bottom: 0
}

/* Shortcode #7 */
.shortcode-7 {
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5
}

.shortcode-7 .col-img {
	height: 510px;
	padding-top: 100px
}

.shortcode-7 .col-img .col-divider {
	display: block;
	width: 385px;
	height: 308px;
	opacity: 0.5;
	border: 4px solid #fff;
}

.shortcode-7 .col-heading {
	height: 510px;
	overflow: hidden;
	padding: 90px 60px;
}

.shortcode-7 .col-heading h2 {
	font-size: 26px;
	font-weight: 700;
	line-height: 34px;
	text-transform: uppercase;
}

.shortcode-7 .col-progress {
	height: 510px;
	padding: 120px 110px 120px 70px;
}

.shortcode-7 .progressbar {
	margin-bottom: 30px;
}

.shortcode-7 .progress {
	height: 4px;
	background-color: #e5e5e5;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

.shortcode-7 .progress-bar {
	background-color: #ffc527;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

.shortcode-7 .progress-title {
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 8px;
}

.shortcode-7 .progress-title .title {
	color: #434343;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.shortcode-7 .progress-title .value {
	float: right;
	color: #9e9e9e;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
}

/* Shortcode #8 */
.shortcode-8 .feature {
	margin-bottom: 50px
}

.shortcode-8 .feature-img {
	position: relative;
	height: 488px;
}

.shortcode-8 .feature-img img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.shortcode-8 .feature-icon {
	width: 70px;
	height: 70px;
	line-height: 70px;
	display: block;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
	background-color: #434343;
	text-align: center;
	margin-bottom: 30px;
	color: #fff;
	font-size: 40px;
	line-height: 70px;
}

.shortcode-8 .feature-icon i {
	line-height: 70px;
}

.shortcode-8 .feature-icon.right {
	float: right
}

.shortcode-8 .feature-icon.right + h4 {
	padding-top: 100px;
}

.shortcode-8 .feature h4 {
	color: #434343;
	font-size: 16px;
	font-weight: 700;
	line-height: 25px;
	margin-bottom: 6px;
}

.shortcode-8 .feature p {
	font-size: 14px;
	font-weight: 500;
	line-height: 23px;
	margin-bottom: 0
}

/* Shortcode #9 */
.shortcode-9 .brand img {
	opacity: 0.7;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.shortcode-9 .brand img:hover {
	opacity: 1
}

.shortcode-2.about-home {
	overflow: visible;
	padding-top: 100px;
	padding-bottom: 100px;
}

.shortcode-2.about-home p {
	color: #9e9e9e;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}

.shortcode-2.about-home .feature {
	background-color: #f9f9f9
}

.shortcode-2.about-home .cta-form {
	margin-top: -211px;
	z-index: 999;
	box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	-moz-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	-webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	position: absolute
}

.shortcode-2.about-home .cta-form .cta.cta-2 {
	padding: 30px
}

.shortcode-2.about-home .cta-icon {
	float: left;
	margin-right: 20px;
	padding-top: 6px;
}

.shortcode-2.about-home .cta-devider {
	padding-left: 60px;
	margin-left: 0
}

.shortcode-2.about-home .cta-form .form {
	background-color: #f9f9f9;
	padding: 50px;
}

.shortcode-2.about-home .cta-form .form form {
	margin-bottom: 0
}

.shortcode-2.about-home .cta-form .form .form-control {
	margin-bottom: 20px;
}

.shortcode-2.about-home .cta-form .form textarea {
	margin-bottom: 30px !important;
}

.shortcode-2.about-home .cta-form p {
	color: #f9f9f9;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 15px;
}

.shortcode-2.about-home .cta-form h5 {
	color: #fff;
	font-family: Montserrat;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1
}

.feature-bordered {
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
	border: 1px solid rgba(49, 49, 49, 0.1);
}

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) and (max-width : 479px) {

.shotcode-1 .feature .feature-icon {
	margin-bottom: 0
}

.shortcode-2 .feature {
	padding-left: 0
}
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 320px)and (max-width : 767px ) {

.shortcode-3 .pr-50 {
	padding-right: 0
}

.shortcode-3 .col-content {
	padding: 15px;
}

.shortcode-3 .col-content .feature {
	text-align: center
}

.shortcode-4 .facts-box {
	margin-bottom: 30px;
}

.shortcode-5 .feature {
	text-align: center
}

.shortcode-6 .feature {
	padding-left: 0;
	margin-bottom: 15px;
}

.shortcode-6 p {
	margin-bottom: 20px;
	text-align: center
}

.shortcode-8 {
	text-align: center
}

.shortcode-8 .feature-icon {
	margin-right: auto;
	margin-left: auto;
	text-align: center
}

.shortcode-8 .feature-icon.right {
	float: none;
}

.shortcode-8 .feature-icon.right + h4 {
	padding-top: 0;
	margin-right: auto;
	margin-left: auto;
	text-align: center
}

.shortcode-8 .feature p {
	text-align: center
}

.shortcode-9 .brand {
	margin-bottom: 30px;
}

.shortcode-9 .brand:after {
	width: 0;
	height: 0;
	opacity: 0
}

.shortcode-7 .col-heading {
	height: auto
}

.shortcode-7 .col-img .col-divider {
	width: 100%
}

.shortcode-7 .col-progress {
	padding: 80px 15px;
	height: auto
}

.shortcode-2.about-home .cta-form {
	margin-top: 0;
	z-index: 1;
	position: relative;
}

.shortcode-2.about-home .cta-icon,
.shortcode-2.about-home .cta .cta-devider:before {
	display: none
}

.shortcode-2.about-home .cta.cta-2 .cta-desc,
.shortcode-2.about-home .cta-devider {
	padding-left: 0
}

.shortcode-2.about-home .cta-form .form {
	padding: 30px 15px;
}

.about-home-2 .heading {
	margin-top: 0
}

.about-home-2 .cta-form {
	margin-top: 0;
	float: none;
	width: auto;
	height: auto;
	text-align: center !important;
	margin-bottom: 20px;
}

.about-home-2 .cta-form .cta,
.about-home-2 .cta-form .cta-model {
	padding-top: 20px;
	padding-bottom: 20px;
}

.about-home-2 .cta-form .cta-icon {
	display: none
}

.about-home-2 .cta-form h5 {
	margin-bottom: 0 !important
}

.about-home-2 .cta-form p {
	text-align: center !important
}
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) and (max-width : 991px) {

.shortcode-9 .brand {
	margin-bottom: 30px;
}

.shortcode-8 img {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	text-align: center
}

.shortcode-6 .feature-2 {
	padding-left: 0;
}

.shortcode-6 p {
	margin-bottom: 20px;
	text-align: center;
}

.shortcode-2.about-home .feature {
	padding-left: 0
}

.shortcode-2.about-home .cta-icon,
.shortcode-2.about-home .cta .cta-devider:before {
	display: none
}

.shortcode-2.about-home .cta-form {
	margin-top: 0;
}

.shortcode-2.about-home .cta.cta-2 .cta-desc,
.shortcode-2.about-home .cta-devider {
	padding-left: 0
}

.shortcode-2.about-home .cta-form .form {
	padding: 30px 15px;
}

.about-home-2 .cta-form {
	width: 270px;
	height: auto;
	margin-top: -207px;
}

.about-home-2 .cta-form .cta,
.about-home-2 .cta-form .cta-model {
	padding-top: 20px;
	padding-bottom: 20px;
}

.about-home-2 .cta-form .cta-icon {
	display: none
}

.about-home-2 .cta-form .cta-desc h5 {
	font-size: 20px;
}

.shortcode-7 .col-heading {
	height: auto
}
}


/* Shortcode #9 */
.shortcode-9 .brand img {
	opacity: 0.7;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
    width: 200px;
	transition: all 0.3s ease-in-out;
}

.shortcode-9 .brand img:hover {
	opacity: 1
}

.shortcode-2.about-home {
	overflow: visible;
	padding-top: 100px;
	padding-bottom: 100px;
}

.shortcode-2.about-home p {
	color: #9e9e9e;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}

.shortcode-2.about-home .feature {
	background-color: #f9f9f9
}

.shortcode-2.about-home .cta-form {
	margin-top: -211px;
	z-index: 999;
	box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	-moz-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	-webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	position: absolute
}

.shortcode-2.about-home .cta-form .cta.cta-2 {
	padding: 30px
}

.shortcode-2.about-home .cta-icon {
	float: left;
	margin-right: 20px;
	padding-top: 6px;
}

.shortcode-2.about-home .cta-devider {
	padding-left: 60px;
	margin-left: 0
}

.shortcode-2.about-home .cta-form .form {
	background-color: #f9f9f9;
	padding: 50px;
}

.shortcode-2.about-home .cta-form .form form {
	margin-bottom: 0
}

.shortcode-2.about-home .cta-form .form .form-control {
	margin-bottom: 20px;
}

.shortcode-2.about-home .cta-form .form textarea {
	margin-bottom: 30px !important;
}

.shortcode-2.about-home .cta-form p {
	color: #f9f9f9;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 15px;
}

.shortcode-2.about-home .cta-form h5 {
	color: #fff;
	font-family: Montserrat;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1
}

.feature-bordered {
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
	border: 1px solid rgba(49, 49, 49, 0.1);
}
/* Shortcode #9 */
.shortcode-9 .brand img {
	opacity: 0.7;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.shortcode-9 .brand img:hover {
	opacity: 1
}

.shortcode-2.about-home {
	overflow: visible;
	padding-top: 100px;
	padding-bottom: 100px;
}

.shortcode-2.about-home p {
	color: #9e9e9e;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}

.shortcode-2.about-home .feature {
	background-color: #f9f9f9
}

.shortcode-2.about-home .cta-form {
	margin-top: -211px;
	z-index: 999;
	box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	-moz-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	-webkit-box-shadow: 0 2px 3px rgba(40, 40, 40, 0.12);
	position: absolute
}

.shortcode-2.about-home .cta-form .cta.cta-2 {
	padding: 30px
}

.shortcode-2.about-home .cta-icon {
	float: left;
	margin-right: 20px;
	padding-top: 6px;
}

.shortcode-2.about-home .cta-devider {
	padding-left: 60px;
	margin-left: 0
}

.shortcode-2.about-home .cta-form .form {
	background-color: #f9f9f9;
	padding: 50px;
}

.shortcode-2.about-home .cta-form .form form {
	margin-bottom: 0
}

.shortcode-2.about-home .cta-form .form .form-control {
	margin-bottom: 20px;
}

.shortcode-2.about-home .cta-form .form textarea {
	margin-bottom: 30px !important;
}

.shortcode-2.about-home .cta-form p {
	color: #f9f9f9;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 15px;
}

.shortcode-2.about-home .cta-form h5 {
	color: #fff;
	font-family: Montserrat;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1
}

.feature-bordered {
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
	border: 1px solid rgba(49, 49, 49, 0.1);
}

.brand-last{
    width: 100px;
    height: 100px;
    margin-bottom: 50px;
}
.shortcode-4 .facts-box::after, .shortcode-9 .brand::after {
    content: "";
    width: 2px;
    height: 30px;
    background-color: #585353;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 0;
  }
  ::after, ::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  /*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
    position: relative;
    display: block;
    padding: 0 0 90px;
    z-index: 1;
  }
  
  .project-one .container {
    max-width: 1750px;
  }
  
  .project-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .project-one__img-box {
    position: relative;
    display: block;
  }
  
  .project-one__img {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
  }
  
  .project-one__img::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--lockdown-black-rgb), .40);
    visibility: hidden;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0) translateZ(100px);
    transform: scaleY(0) translateZ(100px);
    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
    z-index: 1;
  }
  
  .project-one__single:hover .project-one__img::before {
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);
  }
  
  .project-one__img img {
    width: 100%;
    border-radius: 5px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
  }
  
  .project-one__single:hover .project-one__img img {
    transform: scale(1.06) rotate(0deg);
  }
  
  .project-one__content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    border-radius: 5px;
    background-color: var(--lockdown-white);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 6px 6px;
    padding-left: 30px;
    background-position: center top;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 2;
  }
  
  .project-one__single:hover .project-one__content {
    transform: scaleY(1.0);
  }
  
  .project-one__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
  }
  
  .project-one__title>a {
    color: #24231D;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .project-one__title>a:hover {
    color: var(--lockdown-base);
  }
  
  .project-one__plus {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background-color: var(--lockdown-base);
    border-radius: 5px;
    font-size: 27px;
    color: var(--lockdown-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .project-one__plus:hover {
    color: var(--lockdown-white);
    background-color: var(--lockdown-black);
  }
  