/* Start Global Value ********************************************************/
* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
    text-decoration: none;
    /* overflow: hidden; */
}
:root { 
    --main-color: #fc9615;
    --text-color: #1c1c24;
    --hover-color: #12f7ff;
    --bg-color: #ffffff;
    --secon-bg-color: #292e33;
    --big-font: 2.5rem;
    --norma-font: 2rem;
    --neon-box-shadow: 0 0 .5rem #ff8d12;
    --h2-font:3rem;
    --font-neon-text-shadow:0 0 10px rgba(234, 242, 122, 0.3),
    0 0 20px rgba(18,247,255,0.3),
    0 0 30px rgba(18,247,255,0.3),
    0 0 40px rgba(18,247,255,0.3),
    0 0 70px rgba(18,247,255,0.3),
    0 0 80px rgba(18,247,255,0.3),
    0 0 100px rgba(18,247,255,0.3),
    0 0 150px rgba(18,247,255,0.3);
}

/* ::-webkit-scrollbar {
    height: 0px;
    width: .5rem;
}
::-webkit-scrollbar-track {
    background-color: var(--secon-bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--hover-color);
    border-radius: 5rem;
    -webkit-border-radius: 5rem;
    -moz-border-radius: 5rem;
    -ms-border-radius: 5rem;
    -o-border-radius: 5rem;
} */
body {
    font-family: 'Cairo', sans-serif !important;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 150vh;
}
/* section {
    padding: 80px 10%;
} */
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
.whats-float {
    display: none;
    transition: 5s;
    -webkit-transition: 5s;
    -moz-transition: 5s;
    -ms-transition: 5s;
    -o-transition: 5s;
}
.whats-float span{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    z-index: 555;
    font-size: 25px;
    box-shadow: -3px 3px 15px green;
}
.whats-float.visible {
    /* Styling when visible */
    display: block;
    transition: 5s;
    -webkit-transition: 5s;
    -moz-transition: 5s;
    -ms-transition: 5s;
    -o-transition: 5s;
}
.phone-float {
    display: none;
}
.phone-float span{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    z-index: 555;
    font-size: 18px;
    box-shadow: -3px 3px 15px green;

}
.phone-float.visible {
    /* Styling when visible */
    display: block;
    transition: 5s;
    -webkit-transition: 5s;
    -moz-transition: 5s;
    -ms-transition: 5s;
    -o-transition: 5s;
}
/* End Global Value ********************************************************/

/* Start Header ********************************************************/
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 555;
    border-bottom: 1px solid transparent;
    width: 100%;
    color: var(--text-color);
}
@media (max-width: 992px) {
    header {
        position: relative;
    }
}
header .logo-top {
    text-align: center;
    display: none;
    padding: 20px 0;
}
@media (max-width: 992px) {
    header .logo-top {
        display: block;
    }
}
header .logo-top img {
    height: 80px;
}
header .nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 70px;
}
@media (max-width: 992px) {
    header .nav-content {
        background-color: var(--main-color);
        padding: 10px 35px;
    }
}
@media (max-width: 767px) {
    header .nav-content {
        background-color: var(--main-color);
        padding: 10px 25px;
    }
}
header.sticky {
    background-color: black;
    border-bottom: 1px solid var(--secon-bg-color);
    /*padding: 20px 70px;
    */transition: .5s;

}

header .logo .logo-img {
    height: 60px;
}
header .logo .logo-text {
    display: none;
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0;
}
@media (max-width: 992px) {
    header .logo .logo-text {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    header .logo .logo-img {
        display: none;
    }
    header .logo .logo-text {
        display: block;
    }
}
.navlist {
    display: flex;
    margin: 0;
}
.navlist a {
    display: inline-block;
    font-size: 18px;
    color: var(--main-color) !important;
    font-weight: 600;
    padding: 10px 20px;
    animation: sliderAnimation 1s ease forwards;
    -webkit-animation: sliderAnimation 1s ease forwards;
    animation-duration: calc(.3s * var(--i));
    opacity: 0;
}
@keyframes sliderAnimation {
    0% {
        opacity: 0;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
}
    100% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        
}
}
.navlist a:hover {
    color: var(--hover-color);
    text-shadow: 0 0 10px rgba(18,247,255,0.6),
    0 0 20px rgba(18,247,255,0.6),
    0 0 30px rgba(18,247,255,0.6),
    0 0 40px rgba(18,247,255,0.6),
    0 0 70px rgba(18,247,255,0.6),
    0 0 80px rgba(18,247,255,0.6),
    0 0 100px rgba(18,247,255,0.6),
    0 0 150px rgba(18,247,255,0.6);   
}
.navlist a.active {
    color: var(--hover-color);
}
#menu-icon {
    font-size: 2rem;
    z-index: 555;
    cursor: pointer;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    color: #ffffff;
    display: none;
}
@media(max-width:992px) {
    #menu-icon {
        display: block;
        transition: all .4s ease;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        -ms-transition: all .4s ease;
        -o-transition: all .4s ease;
    }
    #menu-icon.bx-x {
        transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
    }
    .navlist {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: -1000px;
        left: 0;
        right: 0;
        background: var(--bg-color);
        padding: 0 5%;
        transition: all .45s ease;
        -webkit-transition: all .45s ease;
        -moz-transition: all .45s ease;
        -ms-transition: all .45s ease;
        -o-transition: all .45s ease;
    }
    .navlist a {
        display: block;
        padding-bottom: 1rem;
        font-size: 1rem;
    }
    .navlist.open {
        top: 100%;
    }
}
/* End Header *****************************************************/

/* Start Wellcome *****************************************************/
#wellcome {
    position: relative;
}
#wellcome::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: .6;
    z-index: 1;
}
.carousel-inner {
    position: relative;
}
.carousel-item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.carousel-item-one {
    background-image: url(../images/slider02.jpg);
}
/* .carousel-item-two {
    background-image: url(../images/slider02.jpg);
} */
.carousel-text {
    position: absolute;
    top: 35%;
    right: 70px;
    z-index: 55;
    color: #ffffff;
}
@media (max-width: 992px) {
    .carousel-text {
        right: 35px;
    }
}
@media (max-width: 767px) {
    .carousel-text {
        right: 25px;
    }
}
.carousel-text strong {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 20px;
    display: block;
}
@media (max-width: 767px) {
    .carousel-text strong {
        font-size: 22px;
    }
}
.carousel-text h4 {
    font-size: 22px;
    color: #ffffff;
    margin: 0 0 0 0;
}
@media (max-width: 767px) {
    .carousel-text h4 {
        font-size: 18px;
    }
}
.word {
    position: absolute;
    display: flex;
    opacity: 0;
    color: var(--main-color);
    text-indent: 5px;
    font-weight: bold;
    font-size: 22px;
}
@media (max-width: 767px) {
    .word {
        font-size: 20px;
        font-weight: bold;
    }
}
.word .letter {
    transform-origin: center center 25px;
}
.word .letter.out {
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    transition: 0.32s cubic-bezier(0.6,0,0.7,0.2);
    -webkit-transition: 0.32s cubic-bezier(0.6,0,0.7,0.2);
    -moz-transition: 0.32s cubic-bezier(0.6,0,0.7,0.2);
    -ms-transition: 0.32s cubic-bezier(0.6,0,0.7,0.2);
    -o-transition: 0.32s cubic-bezier(0.6,0,0.7,0.2);
}
.word .letter.in {
    transition: 0.38s ease;
    -webkit-transition: 0.38s ease;
    -moz-transition: 0.38s ease;
    -ms-transition: 0.38s ease;
    -o-transition: 0.38s ease;
}
.word .letter.behind {
    transform: rotateX(-90deg);
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    -ms-transform: rotateX(-90deg);
    -o-transform: rotateX(-90deg);
}
.whats-link {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    border: 1px solid white;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-top: 30px;
}
.whats-link .whats-icon {
    display: flex;
    font-size: 24px;
    color: lime;
}
/* End Wellcome *****************************************************/

/* Start Pages *****************************************************/
#pages {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 85px 0px 20px 0px;
    overflow: hidden;
}
#pages .box {
    background: #fff;
    text-align: center;
    box-shadow: 6px 5px 30px 0px rgba(0,0,0,.12);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    margin: 10px 0;

}
#pages .box::before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: #fc9615;
    content: "";
    transform: scale(0.5, 1);
    opacity: 0;
    transition: .5s;
}
#pages .box:hover:before {
    transform: scale(1, 1);
    opacity: 1;
}
#pages .box::after {
    content: "";
    width: 88px;
    height: 88px;
    border: 2px solid #E0EAFC;
    border-radius: 6px;
    position: absolute;
    right: -43px;
    bottom: 13px;
    z-index: 10;
    transform: rotate(45deg);
    transition: all 0.5s ease-in-out;
}
#pages .box:hover::after {
    border-color: #fc9615;
}  
#pages .box .feature-box-inner {
    padding: 50px 42px 40px;
    position: relative;
}
#pages .box .feature-box-inner::before {
    content: "";
    width: 70px;
    height: 70px;
    background-color: #E0EAFC;
    border: none;
    border-radius: 6px;
    position: absolute;
    bottom: 23px;
    right: -34px;
    z-index: 11;
    transform: rotate(45deg);
    transition: all 0.5s ease-in-out;
}
#pages .box:hover .feature-box-inner::before {
    background-color: var(--main-color);
}
#pages .box .feature-box-icon .my-icon {
    background: #E0EAFC;
    border-radius: 20px;
    line-height: 120px;
    font-size: 60px;
    color: #fc9615;
    margin-bottom: 20px;
    transition: .5s;
    display: inline-block;
    font-size: 45px;
    padding: 35px;
}
#pages .box:hover .my-icon {
    background: #fc9615;
    color: #fff;
}
#pages .feature-box-title h2 {
    font-size: 21px;
    margin-bottom: 15px;
    transition: .4s;
    color: #1c1c24;
    font-style: normal;
    line-height: 1.3;
    font-weight: 600;
    -webkit-transition: .5s;
    transition: .5s;
    letter-spacing: 0px;
}
.feature-box-desc {
    height: 100px;
}
#pages .feature-btn a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    margin-top: 0;
    display: inline-block;
    transition: .4s;
    color: #FC9615;
    letter-spacing: 1px;
    font-weight: bold;
}
/* End Pages *****************************************************/

/* Start Experience *****************************************************/
#experience {
    padding: 75px 0px 85px 0px;
    position: relative;
    background-color: #f2f4ff;
}
#experience .text-content {
    padding: 10px;
}
#experience .head-text-experience {
    margin-bottom: 10px;
}
#experience .head-text-experience h5 {
    color: #1c1c24;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 10px;
    font-style: italic;
}
#experience .head-text-experience h3 {
    font-size: 40px;
    margin-bottom: 10px;
    text-transform: capitalize;
    margin-top: 0;
    line-height: 1.2;
    font-weight: 600;
}
@media (max-width: 992px) {
    #experience .head-text-experience h3 {
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    #experience .head-text-experience h3 {
        font-size: 25px;
    }
}
#experience .head-text-experience h2 {
    font-size: 40px;
    margin-bottom: 0px;
    text-transform: capitalize;
    margin-top: 0;
    line-height: 1.2;
    font-weight: 600;
}
@media (max-width: 992px) {
    #experience .head-text-experience h2 {
        font-size: 35px;
    }
}
@media (max-width: 767px) {
    #experience .head-text-experience h2 {
        font-size: 25px;
    }
}
#experience .head-text-experience h2 span {
    color: var(--main-color);
}
.bar-main {
    margin: 22px 0 28px;
}
.bar.bar-big {
    height: 5px;
    width: 90px;
    background: #aec6ef;
    margin: 0 0 5px;
    position: relative;
    border-radius: 30px;
}
.bar.bar-big::before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #fc9615;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
}
@-webkit-keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
        -moz-transform: translateX(88px);
        -ms-transform: translateX(88px);
        -o-transform: translateX(88px);
    }
        to {
            -webkit-transform: translateX(0px);
            transform: translateX(0px);
            -moz-transform: translateX(0px);
            -ms-transform: translateX(0px);
            -o-transform: translateX(0px);
    }
}
@keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
        -moz-transform: translateX(88px);
        -ms-transform: translateX(88px);
        -o-transform: translateX(88px);
    }
        to {
            -webkit-transform: translateX(0px);
            transform: translateX(0px);
            -moz-transform: translateX(0px);
            -ms-transform: translateX(0px);
            -o-transform: translateX(0px);
    }
}
#experience .head-text-experience p {
    width: 100%;
    padding: 5px 25px 5px;
    border-right: 3px solid var(--main-color);
    font-style: italic;
    margin: 7px auto 0;
    font-size: 17px;
}
#experience .body-text-experience .card-experience {
    padding: 10px;
}
#experience .body-text-experience .card-experience .card-icon {
    padding-left: 18px;
}
#experience .body-text-experience .card-experience .card-icon span {
    color: #fc9615;
    display: inline-block;
    text-align: center;
    font-size: 40px;
}
#experience .body-text-experience .card-experience .card-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1c1c24;
    font-style: normal;
    margin-top: 10px;
    line-height: 1.3;
    font-weight: bold;
    -webkit-transition: .5s;
    transition: .5s;
    letter-spacing: 0px;
}
#experience .body-text-experience .card-experience .card-content p {
    margin: 0;
    font-size: 16px;
}
#experience .footer-text-experience .whats-link-btn {
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 14px 35px;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: inline-block;
    background: #0B2653;
    color: #fff;
}
#experience .footer-text-experience .whats-link-btn::after {
    position: absolute;
    content: "";
    right: 4px;
    bottom: 4px;
    height: 100%;
    width: 100%;
    background: var(--main-color);
    z-index: -52;
    transition: .5s;
}
#experience .footer-text-experience {
    margin-top: 25px;
}
#experience .footer-text-experience .whats-link-btn:hover::after {
    right: 0px;
    bottom: 0px;
}

#experience .image-content {
    margin-top: 40px;
}
/* End Experience *****************************************************/

/* Start Special Header *****************************************************/
.special-header {
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
    padding-top: 60px;
}
.special-header h5 {
    color: #1c1c24;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 10px;
    font-style: italic;
}
.special-header h2 {
    font-size: 40px;
    margin-bottom: 0px;
    text-transform: capitalize;
    margin-top: 0;
    line-height: 1.2;
    font-weight: 600;
}
@media (max-width: 992px) {
    .special-header h2  {
        font-size: 35px;
    }
}
@media (max-width: 767px) {
    .special-header h2  {
        font-size: 30px;
    }
}
.special-header h2 span {
    color: #fc9615;
}
.bar-center {
    margin: 20px auto !important;
}
/* End Special Header *****************************************************/

/* Start Our Works *****************************************************/
#our-workes {
    padding: 0 0 50px 0;
}
.active {
    background-color: var(--main-color) !important;
    color: #ffffff !important;
    
}
.fillter-buttons {
    margin: 2rem;
    text-align: center;
}
.fillter-buttons .btn {
    background: #f2f4ff;
    border: medium none;
    font-size: 16px;
    line-height: 1;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    text-transform: capitalize;
    padding: 12px 27px;
    font-weight: 600;
    position: relative;
    margin: 0 3px;
    margin-bottom: 7px;
    display: inline-block;
    border-radius: 5px;
    box-shadow: none;
}
.fillter-buttons .btn:hover {
    color: var(--main-color);
}
.portflio-gallary {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;

}
.port-box {
    position: relative;
    display: flex;
    align-items: center;
    grid-template-rows: 1fr auto;
    overflow: hidden;
    background: #292e33;
    border: 2px solid var(--main-color);
    border-radius: 15px;
    box-shadow: var(--neon-box-shadow);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.port-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 280px;
}
.port-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5s;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    /* object-fit: contain; */
}
.port-box:hover .port-image img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.port-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(rgba(0,0,0,0.2), #ff8d12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    padding: 0 2rem;
}
.port-box:hover .port-content {
    opacity: 1;
}
.port-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}
.port-content p {
    font-size: .8rem;
    margin: 5px 0 15px 0;
    color: #fff;
}
.port-content a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid var(--main-color);
    outline: 2px solid #fff;
}
.port-content a i {
    font-size: 1.3rem;
    color: var(--secon-bg-color);
}

/* End Our Works *****************************************************/


/* Start Footer Middle *****************************************************/
#footer-middle {
    padding: 70px 0 33px;
    position: relative;
    background: #111a3a;
    z-index: 1;
    color: #fff;
    overflow: hidden;
}
#footer-middle .footer-logo img {
    width: 50%;
}
#footer-middle .about_us-footer {
    margin-top: 30px;
}
#footer-middle .about_us-footer p {
    font-size: 15px;
    color: #f4f6fe;
    line-height: 28px;
    margin: 20px 0 20px 80px;
}
#footer-middle .menu-social {
    display: flex;
    padding-top: 12px;
    margin: 0;
}
#footer-middle .menu-social li {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 12px;
    margin-top: 0;
    padding-left: 0;
    position: inherit;
}
#footer-middle .menu-social li a {
    color: #f8f9fe;
    font-size: 16px;
    transition: .5s;
    width: 35px !important;
    height: 35px !important;
    line-height: 35px !important;
    background: #fc9615 !important;
    display: block;
    text-align: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#footer-middle .menu-social li a:hover {
    background: #f8f9fe !important;
    color: var(--main-color);
}
#footer-middle .menu-social li a .social-icon {
    border: 0;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    border-radius: 3px;
}

#footer-middle .our-service {
    margin-top: 30px;
}
#footer-middle .h2-title {
    font-size: 22px;
    margin-bottom: 25px;
    /* margin-top: 15px; */
    position: relative;
    color: #f8f9fe;
    font-weight: 700;
}
#footer-middle .menu-help-link li {
    margin-bottom: 13px;
    position: relative;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    font-size: 16px;
    color: #f8f9fe;
    padding-right: 25px;
}
#footer-middle .menu-help-link li::before {
    position: absolute;
    content: "";
    right: 0;
    top: 14px;
    background: #f8f9fe;
    height: 1px;
    width: 10px;
    font-size: 14px;
}
#footer-middle .menu-help-link li a {
    color: #f8f9fe;
    font-size: 16px;
    transition: .5s;
}
#footer-middle .menu-help-link li a:hover {
    color: var(--main-color);
}
#footer-middle .quick-contact {
    margin-top: 30px;
}
#footer-middle .footer-address .footer-address-box {
    display: flex;
}
#footer-middle .footer-address-box .footer-sociala-icon {
    font-size: 25px;
    margin-left: 20px;
}
#footer-middle .footer-address-box .footer-sociala-info p {
    font-size: 15px;
    color: #f4f6fe;
}
#footer-middle .footer-address-box .footer-sociala-info span {
    font-weight: bold;
    margin-bottom: 5px;
    display: inline-block;
}
/* End Footer Middle *****************************************************/

/* Start Footer bottom *****************************************************/
#footer-bottom {
    background-color: #111a3a;
    color: #f8f9fe;
    text-align: center;
    overflow: hidden;
}
#footer-bottom .row {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.23);
    
}
#footer-bottom .copy-right  {
    text-align: start;
}
@media (max-width: 767px) { 
    #footer-bottom .copy-right  {
        text-align: center !important;
    }
}
#footer-bottom .copy-right p {
    color: #f8f9fe;
    padding: 0;
    margin: 1px 0 0;
}
#footer-bottom .my-logo-content {
    text-align: end;
}
@media (max-width: 767px) {
    #footer-bottom .my-logo-content {
        text-align: center !important;
        margin-top: 7px;
    }
}
#footer-bottom .my-logo-content {
    text-align: end;
}
#footer-bottom .my-logo-content a {
    color: #12f7ff;
    font-size: 14px;
    letter-spacing: 1px;
}
.my-logo-content img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
/* End Footer bottom *****************************************************/

/*
///////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////
//////////////////////////  Start Pages ///////////////////////
///////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////
*/ 

/*
///////////////////////////////////////////////////////////////
//////////////////////////  Start Sbaka Pages ///////////////////////
///////////////////////////////////////////////////////////////
*/ 


.top-main-header-page {
    position: relative;
    background-color: black;
}
@media (max-width: 992px) {
    .top-main-header-page {
        background-color: #fff;
    }
}
.top-main-header-page .nav-content {
    /* padding: 10px 70px; */
}
/* Start Custom Header Pages *****************************************************/
.custom-header-pages {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-image: url(../images/bg-03.jpg);
    background-size: cover;
    padding: 215px 0 143px;
    background-color: #121B51;
    position: relative;
}
.custom-header-pages::before {
    content: "";
    background: rgba(28,28,36,.20);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.custom-header-pages-content ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-header-pages-content ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c1c24;
    font-weight: 600;
    display: inline-block;
    margin: 0 6px;
    font-size: 18px;
    z-index: 9659;
}
.custom-header-pages-content ul li:last-child {
    color: #f4f6fe;
}
.custom-header-pages-content ul li a {
    color: #1c1c24;
}
/* End Custom Header Pages *****************************************************/

/* Start Sbaka Page Content *****************************************************/
.page-content {
    padding: 90px 0 100px;
    background: #F6F6F6;
    overflow: hidden;
}
.page-content .text-content .title {
    font-size: 30px;
    font-weight: 600;
}
.page-content .text-content ul li {
    border-bottom: 1px solid #eee;
    padding: 7px 0;
}
.page-content .text-content ul li:first-child {
    margin-top: 20px;
}
.page-content .text-content ul li:last-child {
    margin-bottom: 35px;
}
.page-content .image-content {
    height: 500px;
}
@media (max-width: 992px) {
    .page-content .image-content {
        height: 400px;
    }
}
.page-content .image-content img {
    width: 100%;
    height: 100%;
    border-radius: 10px ;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.page-content .work-title {
    font-size: 16px;
    line-height: 30px;
}
.page-content .work-title span {
    font-size: 18px;
    line-height: 30px;
    color: #4483bc;
    font-weight: 600;
    margin-top: 10px;
    display: block;
}
.page-content .box-images {
    text-align: center;
    height: 400px;
    box-shadow: 0 0 .5rem black;
    border-radius: 10px;
    margin: 10px 0;
}
.page-content .box-images img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}




/* End Sbaka Page Content *****************************************************/

/*
///////////////////////////////////////////////////////////////
////////////////////////// End Sbaka Pages ///////////////////////
///////////////////////////////////////////////////////////////
*/ 
















/* Animation Start ***********************************************************/
.scroll-scale {
    opacity: 0;
    transform: scale(.9);
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transition: all 2s;
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
}
.scroll-bottom {
    opacity: 0;
    transform: translateY(300px);
    -webkit-transform: translateY(300px);
    -moz-transform: translateY(300px);
    -ms-transform: translateY(300px);
    -o-transform: translateY(300px);
    transition: 3s;
    -webkit-transition: 3s;
    -moz-transition: 3s;
    -ms-transition: 3s;
    -o-transition: 3s;
}
.scroll-top {
    opacity: 0;
    transform: translateY(-300px);
    -webkit-transform: translateY(-300px);
    -moz-transform: translateY(-300px);
    -ms-transform: translateY(-300px);
    -o-transform: translateY(-300px);
    transition: 3s;
    -webkit-transition: 3s;
    -moz-transition: 3s;
    -ms-transition: 3s;
    -o-transition: 3s;
}
.scroll-left {
    opacity: 0;
    transform: translatex(-300px);
    -webkit-transform: translatex(-300px);
    -moz-transform: translatex(-300px);
    -ms-transform: translatex(-300px);
    -o-transform: translatex(-300px);
    transition: 3s;
    -webkit-transition: 3s;
    -moz-transition: 3s;
    -ms-transition: 3s;
    -o-transition: 3s;
}
.scroll-right {
    opacity: 0;
    transform: translatex(300px);
    -webkit-transform: translatex(300px);
    -moz-transform: translatex(300px);
    -ms-transform: translatex(300px);
    -o-transform: translatex(300px);
    transition: 3s;
    -webkit-transition: 3s;
    -moz-transition: 3s;
    -ms-transition: 3s;
    -o-transition: 3s;
}
.show-items {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}
  /* Animation End ***********************************************************/
















































