
body {
    background: #fff;
    color: #666666;
    font-family: "Open Sans", sans-serif;
}

a {
    color: #ff5440;
    transition: 0.5s;
    text-decoration: none;
}

a:hover, a:active, a:focus {
    color: #ff5440;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

.Normal, .NormalDisabled, .NormalDeleted {
    color: unset;
    font-size: unset;
    font-weight: unset;
    line-height: unset;
    word-wrap: unset;
}

h1, h2, h3, h4, h5, h6 {
    display: block;
    color: unset;
    font-family: unset;
    font-weight: unset;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 15px;
    bottom: 15px;
    z-index: 996;
    background: #1035a6;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}
.back-to-top i {
    font-size: 20px;
    color: #fff;
    line-height: 0;
}
.back-to-top:hover {
    background: #ff5440;
    color: #fff;
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Prelaoder */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #18d26e;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    background: rgba(0, 0, 0, 0.9);
    height: 120px;
}
#header.header-transparent {
    background: transparent;
}
#header.header-scrolled {
    background: rgba(0, 0, 0, 0.9);
    height: 100px;
}
#header .logo {
    font-size: 34px;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    padding-left: 10px;

}
#header .logo a {
    color: #fff;
}
#header .logo img {
    max-height: 95px;
}
@media (max-width: 992px) {
    #header .logo {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.navbar li {
    position: relative;
}
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;

    color: #fff;
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #d5ca36;
}
.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}
.navbar .dropdown ul li {
    min-width: 200px;
}
.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
    color: #666666;
}
.navbar .dropdown ul a i {
    font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #18d26e;
}
.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}
@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #28d0dc;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}
.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.9);
    transition: 0.3s;
    z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}
.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #333333;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #fc5547;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
}
.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
    min-width: 200px;
}
.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #fc5547;
}
.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 90vh !important;
    background: #000;
    overflow: hidden;
    position: relative;
    margin-top: -30px;
}
@media (max-height: 500px) {
    #hero {
        height: 150vh;
    }
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
#hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#hero .carousel-item::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
}
#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 30px;
    left: 50px;
    right: 50px;
}
#hero .container {
    text-align: left;
}
#hero h2 {
    color: #fff;

    font-size: 35px;

}
@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
}
#hero p {
    width: 80%;
    font-size: 55px;
    color: #fff;
    font-weight: bold;
}
@media (min-width: 1024px) {
    #hero p {
        width: 80%;
    }
}
#hero .carousel-fade {
    overflow: hidden;
}
#hero .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
}
#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
    opacity: 0;
}
#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}
#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}
#hero .carousel-control-prev, #hero .carousel-control-next {
    width: 10%;
}
@media (min-width: 1024px) {
    #hero .carousel-control-prev, #hero .carousel-control-next {
        width: 5%;
    }
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}
#hero .carousel-indicators li {
    cursor: pointer;
}
#hero .btn-get-started {
    font-family: "Montserrat", sans-serif;

    font-size: 22px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 18px 35px;

    transition: 0.5s;
    margin: 10px;
    color: #FAE268;

    border: 1px solid #FAE268;
}
#hero .btn-get-started:hover {
    background: #FAE168;
    color: #fff;
}



@media (max-width: 900px) {



    #hero .btn-get-started {
        font-family: "Montserrat", sans-serif;

        font-size: 17px;
        display: inline-block;
        padding: 14px 25px;

        transition: 0.5s;
        margin: 7px;
        color: #FAE268;

        border: 1px solid #FAE268;
    }
    #hero .btn-get-started:hover {
        background: #FAE168;
        color: #fff;
    }

}

.btn-get-started1 {
    font-family: "Montserrat", sans-serif;

    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 18px 35px;

    transition: 0.5s;
    margin: 10px;




    border: 1px solid #1034A6;
    padding: 20px;
    color: #1034A6;
    font-weight: bold;
}
.btn-get-started1:hover {
    background: #1034A6;
    color: #fff;
}

.btnv:hover {
    background: #1034A6;
    color: #fff;
}

.btn-get-gallery {
    font-family: "Montserrat", sans-serif;

    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 18px 35px;
    transition: 0.5s;
    margin: 10px;
    background: #1034A6;

    padding: 20px;
    color: #FAE168;

}
.btn-get-gallery:hover {
    background: #FF5440;
    color: #fff;
}

.btn-get-pdf {
    font-family: "Montserrat", sans-serif;

    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 16px 25px;
    transition: 0.5s;
    margin: 10px;
    background: #fff;
    border: 1px solid #FF5440;
    padding: 14px;
    color: #FF5440;

}
.btn-get-pdf:hover {
    background: #fff;
    color: #FF5440;
}

.btn-get-download {
    font-family: "Montserrat", sans-serif;

    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 18px 35px;
    transition: 0.5s;
    margin: 10px;
    background: #fff;
    border: 1px solid #28D0DB;
    padding: 20px;
    color: #28D0DB;

}
.btn-get-download:hover {
    background: #28D0DB;
    color: #fff;
}





/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
    font-size: 1.75rem;
    color: #FF5440;
    text-transform: capitalize;
    text-align: left;

    position: relative;

}
.section-header h3::before {
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-header span {
    color: red;
}


/*Popup*/

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.section-header p {
    text-align: left;
    padding-bottom: 30px;
    color: #000000;
    font-size: 20px;
}

.sectio-img
{
    background: #FF5440;
    padding: 0px 10px 10px 10px;
}

.sectio-img1
{
    background: #28D0DC;
    padding: 0px 10px 10px 10px;
}

/* Section with background
--------------------------------*/
.section-bg {
    background: #fff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #f7f7f7;
    min-height: 40px;
    margin-top: 80px;
}
.breadcrumbs h2 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 400;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}
.breadcrumbs ol li + li {
    padding-left: 10px;
}
.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}
@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}

/* Featured Services Section
--------------------------------*/
#featured-services {
    background: #000;
}
#featured-services .box {
    padding: 30px 20px;
}
#featured-services .box-bg {
    background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}
#featured-services i {
    color: #18d26e;
    font-size: 48px;
    display: inline-block;
    line-height: 1;
}
#featured-services h4 {
    font-weight: 400;
    margin: 15px 0;
    font-size: 18px;
}
#featured-services h4 a {
    color: #fff;
}
#featured-services h4 a:hover {
    color: #18d26e;
}
#featured-services p {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
}

/* About Us Section
--------------------------------*/
#about {
    background: url("../img/about-bg.html") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
}
#about::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 9;
}
#about .container {
    position: relative;
    z-index: 10;
}
#about .about-col {
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}
#about .about-col .img {
    position: relative;
}
#about .about-col .img img {
    border-radius: 4px 4px 0 0;
}
#about .about-col .icon {
    width: 64px;
    height: 64px;
    text-align: center;
    position: absolute;
    background-color: #18d26e;
    border-radius: 50%;
    border: 4px solid #fff;
    left: calc(50% - 32px);
    bottom: -30px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#about .about-col i {
    font-size: 28px;
    line-height: 0;
    color: #fff;
    transition: 0.3s;
}
#about .about-col:hover .icon {
    background-color: #fff;
}
#about .about-col:hover i {
    color: #18d26e;
}
#about .about-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 0;
    margin: 40px 0 12px 0;
}
#about .about-col h2 a {
    color: #000;
}
#about .about-col h2 a:hover {
    color: #18d26e;
}
#about .about-col p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
}

/* Services Section
--------------------------------*/
#services {
    background: #fff;
    background-size: cover;
    padding: 60px 0 40px 0;
}
#services .box {
    margin-bottom: 30px;
}
#services .icon {
    float: left;
}
#services .icon i {
    color: #18d26e;
    font-size: 36px;
    line-height: 0;
    transition: 0.5s;
}
#services .title {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}
#services .title a {
    color: #111;
}
#services .box:hover .title a {
    color: #18d26e;
}
#services .description {
    font-size: 14px;
    margin-left: 60px;
    line-height: 24px;
    margin-bottom: 0;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
    background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/call-to-action-bg.jpg) fixed center center;
    background-size: cover;
    padding: 60px 0;
}
#call-to-action h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}
#call-to-action p {
    color: #fff;
}
#call-to-action .cta-btn {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}
#call-to-action .cta-btn:hover {
    background: #18d26e;
    border: 2px solid #18d26e;
}

/* Call To Action Section
--------------------------------*/
#skills {
    padding: 60px 0;
}
#skills .progress {
    height: 35px;
    margin-bottom: 10px;
    border-radius: 0;
}
#skills .progress .skill {
    font-family: "Open Sans", sans-serif;
    line-height: 35px;
    padding: 0;
    margin: 0 0 0 20px;
    text-transform: uppercase;
}
#skills .progress .skill .val {
    float: right;
    font-style: normal;
    margin: 0 20px 0 0;
}
#skills .progress-bar {
    width: 1px;
    text-align: left;
    transition: 0.9s;
}


/* Portfolio Section
--------------------------------*/
#portfolio {
    padding: 0px 0;
}
#portfolio #portfolio-flters {
    padding: 0;
    margin: 5px 0 35px 0;
    list-style: none;
    text-align: left;
}
#portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 15px 5px 15px 0;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
    color: #7C7C7C;
    border: 1px solid #7C7C7C;
    text-transform: uppercase;
    background: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}
#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
    background: #28D0DC;
    color: #fff;
    border: 1px solid #28D0DC;
}
#portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}
#portfolio .portfolio-wrap {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}
#portfolio .portfolio-wrap:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}
#portfolio .portfolio-item {
    position: relative;


    overflow: hidden;
    transition: all 300ms;

}





#portfolio .portfolio-item.img:hover {
    transform: scale(1.5);

}

#portfolio .portfolio-item figure {
    background: #000;
    overflow: hidden;
    height: 280px;
    width:auto;
    position: relative;
    border-radius: 4px 4px 0 0;
    margin: 0;
}




@media (max-width: 1200px) {


    #portfolio .portfolio-item img {
        overflow: hidden;
        height: 340px;
        /* width: auto; */
        position: relative;
        border-radius: 4px 4px 0 0;
        margin: 0;
    }
}




@media (max-width: 800px) {


    #portfolio .portfolio-item img {
        overflow: hidden;
        height: 340px;
        position: relative;
        border-radius: 4px 4px 0 0;
        margin: 0;

    }
}


#portfolio .portfolio-item1 figure {
    background: #000;
    overflow: hidden;
    height: 230px;
    position: relative;
    border-radius: 4px 4px 0 0;
    margin: 0;
}

#portfolio .portfolio-item figure:hover img {
    transform: scale(1.3);
    transition: transform 1s, filter .2s ease-in-out;
}




#portfolio-wrap:hover img {
    transform: scale(1.3);
    transition: transform 1s, filter .2s ease-in-out;
}


#portfolio .portfolio-item figure .link-preview, #portfolio .portfolio-item figure .link-details {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    transition: 0.2s linear;
}
#portfolio .portfolio-item figure .link-preview i, #portfolio .portfolio-item figure .link-details i {
    font-size: 22px;
    color: #333;
    line-height: 0;
}
#portfolio .portfolio-item figure .link-preview:hover, #portfolio .portfolio-item figure .link-details:hover {
    background: #18d26e;
}
#portfolio .portfolio-item figure .link-preview:hover i, #portfolio .portfolio-item figure .link-details:hover i {
    color: #fff;
}
#portfolio .portfolio-item figure .link-preview {
    left: calc(50% - 38px);
    top: calc(50% - 18px);
}
#portfolio .portfolio-item figure .link-details {
    right: calc(50% - 38px);
    top: calc(50% - 18px);
}
#portfolio .portfolio-item figure:hover .link-preview {
    opacity: 1;
    left: calc(50% - 44px);
}
#portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
    right: calc(50% - 44px);
}
#portfolio .portfolio-item .portfolio-info {
    background: #28D0DC;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;
}


#portfolio .portfolio-item .portfolio-info:hover {
    background:#fae168;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;

}

#portfolio .portfolio-item .portfolio-info-2 {
    background: #fae168;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;
}

#portfolio .portfolio-item .portfolio-info-2:hover {
    background:#28d0dc;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;

}



#portfolio .portfolio-item .portfolio-info-3 {
    background: #ff6553;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;
    margin-top:5px;
}


#portfolio .portfolio-item .portfolio-info-3:hover {
    background:#1036a7;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;
}


#portfolio .portfolio-item .portfolio-info-4 {
    background: #1036a7;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;
    margin-top:5px;
}


#portfolio .portfolio-item .portfolio-info-4:hover {
    background:#ff6553;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;
}





#portfolio .portfolio-item .portfolio-info h4 {
    font-size: 20px;
    line-height: 1px;

    margin-bottom: 18px;
    padding-bottom: 0;
}
#portfolio .portfolio-item .portfolio-info h4 a {
    color: #333;
}
#portfolio .portfolio-item .portfolio-info h4 a:hover {
    color: #18d26e;
}
#portfolio .portfolio-item .portfolio-info p {
    padding: 0;
    margin: 0;
    color: #b8b8b8;
    font-weight: 500;
    font-size: 14px;

}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #18d26e;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #18d26e;
}
.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(51, 51, 51, 0.08);
}
.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}
.portfolio-details .portfolio-description {
    padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
    padding: 0;
}

/* Clients Section
--------------------------------*/
#clients {
    padding: 60px 0;
}
#clients img {
    opacity: 0.5;
    transition: 0.3s;
}
#clients img:hover {
    opacity: 1;
}
#clients .swiper-pagination {
    margin-top: 30px;
    position: relative;
}
#clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #18d26e;
}
#clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #18d26e;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
    padding: 60px 0;
}
#testimonials .section-header {
    margin-bottom: 40px;
}
#testimonials .testimonials-carousel, #testimonials .testimonials-slider {
    overflow: hidden;
}
#testimonials .testimonial-item {
    text-align: center;
}
#testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}
#testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}
#testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 15px 0;
}
#testimonials .testimonial-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 10px;
    display: inline-block;
    width: 37px;
}
#testimonials .testimonial-item .quote-sign-right {
    margin-bottom: -15px;
    padding-left: 10px;
    display: inline-block;
    max-width: 100%;
    width: 37px;
}
#testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}
@media (min-width: 992px) {
    #testimonials .testimonial-item p {
        width: 80%;
    }
}
#testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
#testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #18d26e;
}
#testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #18d26e;
}



/* Contact Section
--------------------------------*/
#contact {
    padding: 60px 0;
}
#contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
}
#contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: #18d26e;
}
#contact .contact-info address, #contact .contact-info p {
    margin-bottom: 0;
    color: #000;
}
#contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
}
#contact .contact-info a {
    color: #000;
}
#contact .contact-info a:hover {
    color: #18d26e;
}
#contact .contact-address, #contact .contact-phone, #contact .contact-email {
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    #contact .contact-address, #contact .contact-phone, #contact .contact-email {
        padding: 20px 0;
    }
}
@media (min-width: 768px) {
    #contact .contact-phone {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
}
#contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    background: #fff;
}
#contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}
#contact .php-email-form .error-message br + br {
    margin-top: 25px;
}
#contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}
#contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}
#contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}
#contact .php-email-form .form-group {
    margin-bottom: 20px;
}
#contact .php-email-form input, #contact .php-email-form textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
}
.back-to-top{
    font-size: 10px;
}
#contact .php-email-form input::focus, #contact .php-email-form textarea::focus {
    background-color: #18d26e;
}
#contact .php-email-form button[type=submit] {
    background: #18d26e;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
}
#contact .php-email-form button[type=submit]:hover {
    background: #13a456;
}
@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #2d4eb9;
    padding: 0 0 30px 0;
    color: #eee;
    font-size: 14px;
}
#footer .footer-top {
    background: #1034A6;
    padding: 30px 0 0 0;
}
/*#footer .footer-top .footer-info {
  margin-bottom: 30px;
}*/
#footer .footer-top .footer-info h3 {
    font-size: 34px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 10px;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    border-left: 4px solid #18d26e;
}
#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
    color: #eee;
}
#footer .footer-top .social-links a {
    display: inline-block;
    background: #fff;
    color: #1034A6;
    line-height: 1;
    margin-right: 4px;
font-size: 24px;
    width: 40px;
    height: 40px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#footer .footer-top .social-links a i{
    color: #1034A6;
}
#footer .footer-top .social-links a i {
    line-height: 0;
    font-size: 20px;
}
#footer .footer-top .social-links a:hover {
    background: #ff5440;
    color: #fff;
}
#footer .footer-top h4 {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;

    padding-bottom: 12px;
}
#footer .footer-top h4::before, #footer .footer-top h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
}
#footer .footer-top h4::before {
    right: 0;

}
#footer .footer-top h4::after {

    width: 60px;
}
#footer .footer-top .footer-links {
    margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #ddd;
}
#footer .footer-top .footer-links ul li {

    padding: 10px 0;
}
#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}
#footer .footer-top .footer-links ul a {
    color: #eee;
}
#footer .footer-top .footer-links ul a:hover {
    color: #28d0dc;
}
/*#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}*/
#footer .footer-top .footer-contact p {
    line-height: 26px;
}
#footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}
#footer .footer-top .footer-newsletter input[type=email] {
    border: 0;
    padding: 16px 8px;
    width: 65%;
}
#footer .footer-top .footer-newsletter input[type=submit] {
    background: #FF5440;
    border: 0;
    width: 20%;
    padding: 16px 0;
    text-align: center;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
}
#footer .footer-top .footer-newsletter input[type=submit]:hover {
    background: #28d0dc;
}
#footer .copyright {
    text-align: center;
    padding-top: 30px;
}
#footer .credits {
    text-align: center;
    font-size: 13px;
    color: #ddd;
}
.has-search .form-control {
    padding-left: 2.375rem;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.fixed-btn {
    position: fixed;
    top: 60px;
    right: 80px;
    height: 100px;
    z-index: 999;
    display: none;
}

.cent img {
    margin-left: auto;
    margin-right: auto;
    display: block;
}


.btn-get-gallery {
    font-family: "Montserrat", sans-serif;

    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 18px 35px;
    transition: 0.5s;
    margin: 5px;
    background: #1034A6;

    padding: 20px;
    color: #FAE168;

}
.btn-get-gallery:hover {
    background: #FF5440;
    color: #fff;
}

.btn-get-virtual {
    font-family: "Montserrat", sans-serif;

    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 18px 35px;
    transition: 0.5s;
    margin: 5px;
    background: #fae168;

    padding: 20px;
    color: #1034A6;

}
.btn-get-virtual:hover {
    background: #1034A6;
    color: #fae168;
}

.navbar-fixed-top.scrolled {
    background-color: #fff !important;
    transition: background-color 200ms linear;
}

.navbar-fixed-top.scrolled .nav-link {
    color:#2748AF;
}


#header.header-scrolled {
    height: 100px;
}

.fa-search {
    color: #28d0dc;
}

@media (max-width: 900px) {
    .fa-search {
        color: #28d0dc;
        padding-left:25px;
    }

}

.fa-globe {
    color: #28d0dc;

}

@media (max-width: 900px) {
    .fa-globe  {
        color: #28d0dc;
        padding-left:25px;
    }

}



.navbar-fixed-top.scrolled {
    background-color: #fff !important;
    transition: background-color 200ms linear;
}

.navbar-fixed-top.scrolled .nav-link {
    color:#2748AF;
}

.navbar-fixed-top.scrolled .nav-link:hover {
    color:#ff5440;
}


.tab {
    overflow: hidden;
    border: none;
    background-color: #fff;
}
.tab button {
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px;
    font-size: 16px;
    background-color: #1035a6;
    color:#fae168;

}
.tab button:hover {
    background-color: #fae168;
    color:#1035a6;

}
.tab button.active {
    background-color: #fe5541;
    color:#1035a6;
}
.tabcontent {
    display: none;
    padding: 5px 15px 5px 15px;
    border: none;
    border-top: none;
}






/* Language*/
.lang-menu {
    /*width: 10px;*/
    text-align: right;
    font-weight: 400;
    position: relative;
    color: #fff;
    font-size:12px;
}
.lang-menu .selected-lang {
    display: flex;
    justify-content: space-between;
    line-height: 2;
    cursor: pointer;
}
.lang-menu .selected-lang:before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url(https://www.countryflags.io/us/flat/32.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.lang-menu ul {
    margin: 0;
    padding: 0;
    display: none;
    background-color: #1035a6;
    border: none;
    position: absolute;
    top: 18px;
    right: 0px;
    width: 125px;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}

html[lang="ar-SA"] .lang-menu ul {
    right: -70px;
}

html[lang="ar-SA"] .lang-menu ul li {
    text-align: right;
}


.lang-menu ul li {
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.lang-menu ul li a {
    color: #fff;
    text-decoration: none;
    width: 125px;
    padding: 5px 10px;
    display: block;
}

.lang-menu ul li:hover {
    background-color: #fe5541;
}

.lang-menu ul li a:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.en:before {
    background-image: url('/Portals/2/assets/img/uk.png');
}


.ar:before {
    background-image: url('/Portals/2/assets/img/eg.png');
}


.lang-menu:hover ul {
    display: block;
}


/*Popup*/

.trigger{
    text-align: center;
    padding: 7px 13px;
    background: #3e3e3e;
    color: #fff;
    font-size: 15px;
    outline: none;
    border: none;
    border-radius: 5px;
    font-family: cursive;
}

.modals {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modals-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    width: 24rem;
    border-radius: 0.5rem;
}
.close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: lightgray;
}
.close-button:hover {
    background-color: darkgray;
}
.show-modals {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}


/* Featured Services Section
--------------------------------*/
#featured-services {
    background: #000;
}
#featured-services .box {
    padding: 30px 20px;
}
#featured-services .box-bg {
    background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}
#featured-services i {
    color: #18d26e;
    font-size: 48px;
    display: inline-block;
    line-height: 1;
}
#featured-services h4 {
    font-weight: 400;
    margin: 15px 0;
    font-size: 18px;
}
#featured-services h4 a {
    color: #fff;
}
#featured-services h4 a:hover {
    color: #18d26e;
}
#featured-services p {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
}



/* Carousel2*/

@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&amp;display=swap");
@import url("https://use.fontawesome.com/releases/v5.13.0/css/all.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');

:root {
    /* GENERAL FONT */
    --font1: "Open Sans", sans-serif;
    --font2: 'Roboto', sans-serif;
    /* GENERAL COLOR */
    --bg-col-1: #0059b3;
    --bg-col-2: #dc3545;
    --bg-col-3: #fff;
    --bg-col-4: #024c96;
    --tx-color-1: #fff;
    --tx-color-2: #000;
    --tx-color-3: #0059b3;


/* //custom slider */
--tx-slider-section-title: #212529;
    --bg-slider-section: #fff;

    --bg-slider-card-4: #fff;
    --tx-slider-card-4: #0059b3;


/* //button arrow & archive */
--tx-button: #fff;
    --bg-button: #0059b3;
}



.btn-archive {
    color: var(--tx-button);
    background: var(--bg-button);
    border-color: var(--bg-button-border);

    -webkit-transition: all .3s linear 0s;
    transition: all .3s linear 0s;

&:hover {
     color: var(--tx-button-hover);
     background-color: var(--bg-button-hover);
     border-color: var(--bg-button-hover);
 }

&:focus {
     -webkit-box-shadow: 0 0 0 0.25rem var(--bg-button-focus);
     box-shadow: 0 0 0 0.25rem var(--bg-button-focus);
 }




}
.custom-slider {
    font-family: var(--font1);
    background: var(--bg-slider-section);
    -webkit-transition: all .3s linear 0s;
    transition: all .3s linear 0s;

.title-section {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--tx-slider-section-title);
}

.swiper-container {

/* // width: 600px; */
/* // height: 300px; */
/* // START BOX-4 */
   .card.box-4 {
       background: var(--bg-slider-card-4);
       color: var(--tx-slider-card-4);
   /* // width: 200px; */

.card-header {
    background: var(--bg-slider-card-4);
    color: var(--tx-slider-card-4);
    border-bottom: 0;

.fa-map-marker-alt {
    color: var(--tx-slider-card-4);

&.grow {
     transition: all .2s ease-in-out;

&:hover {
     transform: scale(1.5);
 }
}
}
}

.attached {
    font-weight: 300;
    font-size: .8rem;
}


.card-title {
    line-height: 35px;
    color: var(--tx-slider-card-4);

.day {
    font-weight: 600;
    font-size: 3.5rem;

}

.month {
    font-size: 1.5rem;

    font-weight: 300;

}
}
}

/* // END BOX-4 */
/* // START BOX-5 */
   .card.box-5 {
       background: var(--bg-col-2);
       color: var(--tx-color-1);

.card-header {
    background: var(--bg-col-1);
    border-bottom: 0;
}



.attached {
    font-weight: 300;
    font-size: .8rem;

.link {
    color: var(--tx-color-1);

&:hover {
     text-decoration: none;
 }
}


}

.card-title {
    line-height: 35px;


.day {
    font-weight: 600;
    font-size: 3.5rem;
    color: var(--tx-color-1);
}

.cal-y {
    display: grid;
    line-height: 21px;

.month {
    font-size: 1.5rem;
    color: var(--tx-color-1);
    font-weight: 300;

}

.year {
    font-size: 1.2rem;
    color: var(--tx-color-1);
    font-weight: 700;

}
}

}

.card-footer {
    background: var(--bg-col-2);

/* // border-top: 0; */
.fa-map-marker-alt {
    color: var(--tx-color-1);

&.grow {
     transition: all .2s ease-in-out;

&:hover {
     transform: scale(1.5);
 }
}
}
}
}

/* // END BOX-5 */
}




}

.btn-4 {
    color: #fae168 !important;
    background: #fe5541 !important;
    transition: all 0.16s ease-in;
    padding: 15px 30px;
    text-align: center;
    border:none;
}

.btn-4 a{
    color: #fae168 !important;
    text-decoration: none;
}

.btn-4:hover {
    background: #fae168 !important;
    color: #fe5541 !important;
    cursor: pointer;
}

.btn-4:hover a {
    color: #fe5541 !important
}



/* Search */


.search-popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.search-bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .8);
}

.search-popup label {
    color: white;
}

.search-form {
    display: block;
    margin: 7em 4em;
    position: relative;
    right: -100%;
}

.form {
    position: relative;
}

.form input {
    outline: none;
    border-width: 0 0 1px 0;
    border-style: none none solid none;
    border-color: #dad6d5;
    background-color: transparent;
    width: 100%;
    padding: 1em 0;
    color: #dad6d5;
}

.form input:focus::-webkit-input-placeholder {
    opacity: 0;
}

.form input:focus::-moz-placeholder {
    opacity: 0;
}

.form input:-ms-input-placeholder {
    opacity: 0;
}

.form input:focus:-moz-placeholder {
    opacity: 0;
}

.form label {
    position: absolute;
    top: 25%;
    right: 0;
}


/* Popup*/

modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #1035a6;
    float: right;
    font-size: 28px;
    font-weight: bold;
    z-index:999;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}



.center {
    margin: auto;
    width: 50%;

}


.mouse {
    cursor: pointer;
}

.centered {
    margin: auto;
    display: block;
    max-height: 100%;
    max-width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}


/* Overlay */

@import "../../../../../../index.html";

*{margin:0;padding:0;}
#overlay{ /* we set all of the properties for our overlay */
    height:80%;
    width:80%;
    margin:0 auto;
    background:white;
    color:black;
    padding:10px;
    position:absolute;
    top:5%;
    left:10%;
    z-index:1000;
    display:none;
    /* CSS 3 */
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    -o-border-radius:10px;
    border-radius:10px;
}

#mask{ /* create are mask */
    position:fixed;
    top:0;
    left:0;
    background:rgba(0,0,0,0.6);
    z-index:500;
    width:100%;
    height:100%;
    display:none;
}
/* use :target to look for a link to the overlay then we find our mask */
#overlay:target, #overlay:target + #mask{
    display:block;
    opacity:1;
    background:rgba(0,0,0,0.6);

}
.close{ /* to make a nice looking pure CSS3 close button */
    display:block;
    position:absolute;
    top:-20px;
    right:-20px;
    background:#fe5541;
    color:white;
    height:40px;
    width:40px;
    line-height:40px;
    font-size:35px;
    text-decoration:none;
    text-align:center;
    font-weight:bold;
    -webkit-border-radius:40px;
    -moz-border-radius:40px;
    -o-border-radius:40px;
    border-radius:40px;
}
#open-overlay{ /* open the overlay */
    text-decoration:none;
    display:inline-block;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    -o-border-radius:10px;
    border-radius:10px;
}

/* Video*/

.lightbox {
    /** Default lightbox to hidden */
    display: none;

    /** Position and style */
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
}
.lightbox:target {
    /** Remove default browser outline */
    outline: none;

    /** Unhide lightbox **/
    display: block;
}

/** videoModal **/
#videoModal {
    border-radius: 0;
    width: 870px;
    margin:auto;}
#videoModal .modal-header {
    background: #000;
    border: 0;
    color: #fff;
    position: relative;
    height:35px; }
#videoModal .modal-header h3 {
    font-size: 18px;
    line-height: 22px;
    font-family:Arial, Helvetica, sans-serif;
    padding:5px;}
#videoModal .modal-body {
    height: 489px;
    padding: 0;
    max-height: none;
    overflow: hidden; }
#videoModal .modal-footer:empty {
    display: none !important; }
#videoModal .close {
    background: #DB00B8;
    color: #fff;
    font-size: 24px;
    margin: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    text-shadow: none;
    top: 0;
    width: 38px; }

  #videoModal .modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto; }

	/*2*/


#fade {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
}

#light {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 600px;
    max-height: 360px;
    margin-left: -300px;
    margin-top: -180px;
    border: 2px solid #FFF;
    background: #FFF;
    z-index: 1002;
    overflow: visible;
}

#boxclose {
    float: right;
    cursor: pointer;
    color: #fff;
    border: 1px solid #AEAEAE;
    border-radius: 3px;
    background: #222222;
    font-size: 31px;
    font-weight: bold;
    display: inline-block;
    line-height: 0px;
    padding: 11px 3px;
    position: absolute;
    right: 2px;
    top: 2px;
    z-index: 1002;
    opacity: 0.9;
}

.boxclose:before {
    content: "×";
}

#fade:hover ~ #boxclose {
    display:none;
}

.test:hover ~ .test2 {
    display: none;
}




@media (max-width: 900px) {




    /* Portfolio Section
    --------------------------------*/
    #portfolio {
        padding: 0px 0;
    }
    #portfolio #portfolio-flters {
        padding: 0;
        margin: 5px 0 35px 0;
        list-style: none;
        text-align: left;
    }
    #portfolio #portfolio-flters li {
        cursor: pointer;
        margin: 15px 15px 15px 0;
        display: inline-block;
        padding: 10px 20px;
        font-size: 12px;
        line-height: 20px;
        color: #7C7C7C;
        border: 1px solid #7C7C7C;
        text-transform: uppercase;
        background: #fff;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
    }
    #portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
        background: #28D0DC;
        color: #fff;
        border: none;
    }
    #portfolio #portfolio-flters li:last-child {
        margin-right: 0;
    }
    #portfolio .portfolio-wrap {
        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
    }
    #portfolio .portfolio-wrap:hover {
        box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
    }
    #portfolio .portfolio-item {
        position: relative;
        width:50%;
        overflow: hidden;
    }
    #portfolio .portfolio-item figure {
        background: #000;
        overflow: hidden;
        height: 460px;
        position: relative;
        border-radius: 4px 4px 0 0;
        margin: 0;
    }

    #portfolio .portfolio-item1 figure {
        background: #000;
        overflow: hidden;
        height: 230px;
        position: relative;
        border-radius: 4px 4px 0 0;
        margin: 0;
    }

    #portfolio .portfolio-item figure:hover img {
        transition: 0.3s;
    }

    #portfolio .portfolio-item figure .link-preview, #portfolio .portfolio-item figure .link-details {
        position: absolute;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        line-height: 1;
        text-align: center;
        width: 36px;
        height: 36px;
        background: #fff;
        border-radius: 50%;
        transition: 0.2s linear;
    }
    #portfolio .portfolio-item figure .link-preview i, #portfolio .portfolio-item figure .link-details i {
        font-size: 22px;
        color: #333;
        line-height: 0;
    }
    #portfolio .portfolio-item figure .link-preview:hover, #portfolio .portfolio-item figure .link-details:hover {
        background: #18d26e;
    }
    #portfolio .portfolio-item figure .link-preview:hover i, #portfolio .portfolio-item figure .link-details:hover i {
        color: #fff;
    }
    #portfolio .portfolio-item figure .link-preview {
        left: calc(50% - 38px);
        top: calc(50% - 18px);
    }
    #portfolio .portfolio-item figure .link-details {
        right: calc(50% - 38px);
        top: calc(50% - 18px);
    }
    #portfolio .portfolio-item figure:hover .link-preview {
        opacity: 1;
        left: calc(50% - 44px);
    }
    #portfolio .portfolio-item figure:hover .link-details {
        opacity: 1;
        right: calc(50% - 44px);
    }
    #portfolio .portfolio-item .portfolio-info {
        background: #28D0DC;
        color: #fff;
        padding: 30px;
        height: 90px;
        border-radius: 0 0 3px 3px;
    }
    #portfolio .portfolio-item .portfolio-info h4 {
        font-size: 20px;
        line-height: 1px;

        margin-bottom: 18px;
        padding-bottom: 0;
    }
    #portfolio .portfolio-item .portfolio-info h4 a {
        color: #333;
    }
    #portfolio .portfolio-item .portfolio-info h4 a:hover {
        color: #18d26e;
    }
    #portfolio .portfolio-item .portfolio-info p {
        padding: 0;
        margin: 0;
        color: #b8b8b8;
        font-weight: 500;
        font-size: 14px;

    }
}

@media (max-width: 500px) {




    /* Portfolio Section
    --------------------------------*/
    #portfolio {
        padding: 0px 0;
    }
    #portfolio #portfolio-flters {
        padding: 0;
        margin: 5px 0 35px 0;
        list-style: none;
        text-align: left;
    }
    #portfolio #portfolio-flters li {
        cursor: pointer;
        margin: 15px 15px 15px 0;
        display: inline-block;
        padding: 10px 20px;
        font-size: 12px;
        line-height: 20px;
        color: #7C7C7C;
        border: 1px solid #7C7C7C;
        text-transform: uppercase;
        background: #fff;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
    }
    #portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
        background: #28D0DC;
        color: #fff;
        border: none;
    }
    #portfolio #portfolio-flters li:last-child {
        margin-right: 0;
    }
    #portfolio .portfolio-wrap {
        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
    }
    #portfolio .portfolio-wrap:hover {
        box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
    }
    #portfolio .portfolio-item {
        position: relative;
        width:100%;
        overflow: hidden;
    }
    #portfolio .portfolio-item figure {
        background: #000;
        overflow: hidden;
        height: 460px;
        position: relative;
        border-radius: 4px 4px 0 0;
        margin: 0;
    }

    #portfolio .portfolio-item1 figure {
        background: #000;
        overflow: hidden;
        height: 230px;
        position: relative;
        border-radius: 4px 4px 0 0;
        margin: 0;
    }

    #portfolio .portfolio-item figure:hover img {
        transition: 0.3s;
    }
    #portfolio .portfolio-item figure .link-preview, #portfolio .portfolio-item figure .link-details {
        position: absolute;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        line-height: 1;
        text-align: center;
        width: 36px;
        height: 36px;
        background: #fff;
        border-radius: 50%;
        transition: 0.2s linear;
    }
    #portfolio .portfolio-item figure .link-preview i, #portfolio .portfolio-item figure .link-details i {
        font-size: 22px;
        color: #333;
        line-height: 0;
    }
    #portfolio .portfolio-item figure .link-preview:hover, #portfolio .portfolio-item figure .link-details:hover {
        background: #18d26e;
    }
    #portfolio .portfolio-item figure .link-preview:hover i, #portfolio .portfolio-item figure .link-details:hover i {
        color: #fff;
    }
    #portfolio .portfolio-item figure .link-preview {
        left: calc(50% - 38px);
        top: calc(50% - 18px);
    }
    #portfolio .portfolio-item figure .link-details {
        right: calc(50% - 38px);
        top: calc(50% - 18px);
    }
    #portfolio .portfolio-item figure:hover .link-preview {
        opacity: 1;
        left: calc(50% - 44px);
    }
    #portfolio .portfolio-item figure:hover .link-details {
        opacity: 1;
        right: calc(50% - 44px);
    }
    #portfolio .portfolio-item .portfolio-info {
        background: #28D0DC;
        color: #fff;
        padding: 30px;
        height: 90px;
        border-radius: 0 0 3px 3px;
    }
    #portfolio .portfolio-item .portfolio-info h4 {
        font-size: 20px;
        line-height: 1px;

        margin-bottom: 18px;
        padding-bottom: 0;
    }
    #portfolio .portfolio-item .portfolio-info h4 a {
        color: #333;
    }
    #portfolio .portfolio-item .portfolio-info h4 a:hover {
        color: #18d26e;
    }
    #portfolio .portfolio-item .portfolio-info p {
        padding: 0;
        margin: 0;
        color: #b8b8b8;
        font-weight: 500;
        font-size: 14px;

    }
}

.fit  {
    height: 100%;
    object-fit: contain;
    vertical-align: middle;
    display: inline-block;
}

.help  {

    vertical-align: middle;
    display: inline-block;
}








.ext {
    position: relative;
    overflow: hidden;

}

.ext:hover img {
    transform: scale(1.03);
    transition: transform 1s, filter .1s ease-in-out;

}



.ext3 {
    position: relative;
    overflow: hidden;

}

.ext3:hover img {
    transform: scale(1.1);
    transition: transform 1s, filter .3s ease-in-out;

}

@media (max-width: 900px) {


    .ext1 {
        position: relative;
        width:100%;
        display:inline-block;
        margin-left :0px !important;
    }

    .ext2 {
        position: relative;
        width:100%;
        display:inline-block;
        margin-left :20px !important;
    }


    @media only screen and (max-width: 900px) and (min-width: 300px) {
        .ext1 {
            float: none !important;
            width: 100% !important;
        }
        .ext2 {
            float: none !important;
            width: 100% !important;
        }
    }

    .hi {
        height:500px;
    }

    @media (max-width: 400px) {
        .hi {
            height:300px;
            max-height:150%;
        }

    }


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

    .image-box {
        position: relative;
        margin: auto;
        overflow: hidden;
        width: 540px;
    }
    .image-box img {
        max-width: 100%;
        transition: all 0.3s;
        display: block;
        width: 100%;
        height: auto;
        transform: scale(1);
    }

    .image-box:hover img {
        transform: scale(1.1);
    }


    /* arro2*/

    a.button {
        margin: 20px;
        font-size: 20px;
    }

    .arrow {
        color: #0c5449;
        background-color: #f6f3ed;
        margin: 1em 0;

&::after {
     display: inline-block;
     padding-left: 8px;
     content: "\0279E";  /* // arrow right unicode */
 -webkit-transition: transform 0.3s ease-out;
     -moz-transition: transform 0.3s ease-out;
     -ms-transition: transform 0.3s ease-out;
     -o-transition: transform 0.3s ease-out;
     transition: transform 0.3s ease-out;
 }

&:hover {
     color: #0c5449;
     background-color: #f6f3ed;

&::after {
     -webkit-transform: translateX(4px);
     -moz-transform: translateX(4px);
     -ms-transform: translateX(4px);
     -o-transform: translateX(4px);
     transform: translateX(4px);
 }
}
}

.pictureContainer svg {
    position: relative;
    top: 0px;
    transition: transform .2s ease-in-out;
}
.pictureContainer svg:hover {
    transform: translate3d(25px, 25px, 0px);
}




.zoom {
    transition: transform 1s !important;
}

.zoom:hover {
    transform: scale(2) !important;
}



#preloaders {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999; /* makes sure it stays on top */
}
#camera {
    width: 220px;
    height: 220px;
    position: absolute;
    left: 50%; /* centers the loading animation horizontally one the screen */
    top: 50%; /* centers the loading animation vertically one the screen */
    background-image: url(https://creativito.co/uploads/visit-egypt.svg); /* path to your loading animation */

    background-repeat: no-repeat;
    background-position: center;
    margin: -150px 0 0 -150px /* is width and height divided by two */
}

@media (max-width: 900px) {
    .hidden-mobile {
        display: none;
    }
}


.moving-left
{
    position: relative;
    transition: transform 0.1s ease;
    transform: translateX(0px);
}
.moving-left:hover img
{
    transform: translateX(-100px);


}


@media (max-width: 900px) {
    .hidden-mobile {
        display: none;
    }
}



/*search bar*/

* {
    box-sizing: border-box;
}



/*the container must be positioned relative:*/
.autocomplete {
    position: relative;
    display: inline-block;
}

input {
    border: 1px solid transparent;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 16px;
}

input[type=text] {
    background-color: #f1f1f1;
    width: 100%;
}

input[type=submit] {
    background-color: DodgerBlue;
    color: #fff;
    cursor: pointer;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
    background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: Blue !important;
    color: #ffffff;
}
}
