/*
@File: Klinsa Template Styles

* This file contains the styling for the actual Template, this
is the file you need to edit to change the look of the
Template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default Area CSS
** - Preloader Area CSS
** - Header Area CSS
** - Banner Area CSS
** - Boxes Area CSS
** - About Area CSS
** - Our Process Area CSS
** - Services Area CSS
** - Why Choose Us Area CSS
** - Portfolio Area CSS
** - Counter Area CSS
** - Testimonials Area CSS
** - Partner Area CSS
** - Blog Area CSS
** - Pricing Area CSS
** - Estimate Area CSS
** - Contact Area CSS
** - Page Title Area CSS
** - Pagination Area CSS
** - Portfolio Details Area CSS
** - Error Area CSS
** - Blog Details Area CSS
** - Sidebar Area CSS
** - FAQ Area CSS
** - Services Details Area CSS
** - Footer Area CSS
** - Back To Top CSS
*/
/*================================================
Default Area CSS
=================================================*/

@font-face {
    font-family: 'DroidSansArabic';
    src: url('../fonts/DroidSansArabic.ttf');
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.otf');
}

body {
    padding: 0;
    margin: 0;
    font-family: 'DroidSansArabic', "Poppins-Regular";
    font-size: 15px;
}

a {
    display: block;
    color: #313232;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    color: #247ffb;
}

p {
    color: #333;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.8;
}

p:last-child {
    margin-bottom: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #313232;
    font-family: 'DroidSansArabic', 'Poppins-Regular'
}

button {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: 0 !important;
}

img {
    max-width: 100%;
    height: auto;
}

select {
    cursor: pointer;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

.modal-header .close{
    margin: -20px !important;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

.ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.gray-bg {
    background-color: #f1f1f1;
}

/*default-btn*/
.default-btn {
    background-color: #247ffb;
    color: #ffffff;
    display: inline-block;
    padding: 17px 40px;
    text-transform: uppercase;
    border-radius: 30px;
    line-height: initial;
    font-weight: 500;
    font-size: 14px;
}

.default-btn:hover {
    background-color: #f90000;
    color: #fff;
}

/*section-title*/
@-webkit-keyframes moveLeftBounces {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(45px);
        transform: translateX(45px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes moveLeftBounces {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(45px);
        transform: translateX(45px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.section-title {
    margin: -5px auto 40px;
    text-align: center;
    max-width: 735px;
}

.section-title span {
    font-size: 17px;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: #247ffb;
    display: block;
}

.section-title h2 {
    text-transform: capitalize;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 35px;
}

.section-title p {
    max-width: 520px;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
}



.section-title2 {
    margin: -8px auto 80px;
    text-align: center;
    position: relative;
}

.section-title2 span {
    text-transform: uppercase;
    color: #247ffb;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.section-title2 h2 {
    font-size: 40px;
    margin-bottom: 40px;
    position: relative;
    display: block;
}

.section-title2 h2::before {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    content: "";
    width: 100px;
    height: 3px;
    background-color: #247ffb;
    margin: auto;
}

.section-title2 h2::after {
    position: absolute;
    bottom: -25px;
    left: -45px;
    right: 0;
    content: "";
    width: 8px;
    height: 3px;
    margin: auto;
    background-color: #ffffff;
    -webkit-animation: moveLeftBounces 10s linear infinite;
    animation: moveLeftBounces 10s linear infinite;
}

.section-title2 h2:last-child {
    margin-bottom: 0;
}

.section-title2 p {
    max-width: 520px;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
}




.section-title.text-left {
    text-align: left;
    position: relative;
    max-width: 100%;
    padding-right: 245px;
    margin-left: 0;
    margin-right: 0;
}

.section-title.text-left p {
    margin-left: 0;
    margin-right: 0;
}

.section-title.text-left .default-btn {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*form-control*/
.form-control {
    border: 1px solid #eeeeee;
    color: #313232;
    background-color: #F9F9F9;
    font-size: 14px;
    padding: 15px;
    line-height: initial;
    height: 50px;
}

.form-control:focus {
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border-color: #247ffb;
}

.form-control::-webkit-input-placeholder {
    color: #777777;
}

.form-control:-ms-input-placeholder {
    color: #777777;
}

.form-control::-ms-input-placeholder {
    color: #777777;
}

.form-control::placeholder {
    color: #777777;
}

/*================================================
Header Area CSS
=================================================*/
.top-header {
    background-color: #247ffb;
    padding-top: 15px;
    padding-bottom: 15px;
}

.top-header .social-links {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    text-align: center;
    margin-top: 30px;
}

.top-header .social-links li {
    display: inline-block;
    line-height: initial;
    margin-right: 10px;
}

.top-header .social-links li a {
    color: #ffffff;
    font-size: 16px;
}

.top-header .social-links li a:hover {
    color: #f90000;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.top-header .social-links li:last-child {
    margin-right: 0;
}

.top-header .header-contact-info {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    text-align: right;
}

.top-header .header-contact-info li {
    color: #ffffff;
    display: inline-block;
    line-height: initial;
    margin-right: 20px;
    font-size: 14px;
}

.top-header .header-contact-info li:last-child {
    margin-right: 0;
}

.top-header .header-contact-info li a {
    display: inline-block;
    color: #ffffff;
}

.top-header .header-contact-info li a:hover {
    color: #f90000;
}

.top-header .header-contact-info li i {
    color: #fff;
    margin-right: 3px;
}

.navbar {
    padding: 5px 0;
}

.navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff !important;
    z-index: 666;
    -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.3);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    padding: 5px 0;
    font-size: 12px;
}

.navbar-brand img {
    height: 100px;
}

.navbar.is-sticky .navbar-brand img {
    height: 70px;
}

.bg-light {
    background-color: transparent !important;
}

.navbar-light .navbar-nav {
    font-family: 'DroidSansArabic', 'Poppins-Regular'
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: #313232;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    margin-left: 0;
    margin-right: 23px;
    padding-left: 0;
    padding-right: 0;
}

.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link:focus,
.navbar-light .navbar-nav .nav-item .nav-link.active {
    color: #247ffb;
}


.navbar-light .navbar-nav .nav-item .dropdown-menu {
    border: none;
    background-color: #ffffff;
    border-radius: 0;
    padding: 20px;
    width: 250px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    display: block;
    background-color: transparent;
    border: 0;
    color: #313232;
    text-transform: capitalize;
    padding: 0;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-item .dropdown-menu .dropdown-item:first-child {
    margin-top: 0;
}

.navbar-light .navbar-nav .nav-item .dropdown-menu .dropdown-item.active,
.navbar-light .navbar-nav .nav-item .dropdown-menu .dropdown-item:active,
.navbar-light .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.navbar-light .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
    color: #247ffb;
    background-color: transparent;
}

@media only screen and (min-width: 991px) {
    .navbar-light .dropdown .dropdown-menu {
        -webkit-transition: 0.5s;
        transition: 0.5s;
        overflow: hidden;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-transform: scale(1, 0);
        transform: scale(1, 0);
        display: block;
        width: 200px;
    }

    .navbar-light .dropdown:hover>.dropdown-menu {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}




/*
Top Header Area Style
======================================================*/
.header-area {
    background-color: #ffffff;
}

.top-header {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.top-header .header-left-content img {
    position: relative;
    top: 2px;
}

.top-header .header-right-content {
    float: right;
    margin-top: 15px;
}

.top-header .header-right-content ul li {
    display: inline-block;
    color: #24416b;
    padding-left: 50px;
    position: relative;
    margin-right: 30px;
    top: 8px;
    color: #fff;
}

.top-header .header-right-content ul li:last-child {
    margin-right: 0;
}

.top-header .header-right-content ul li i {
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: -1px;
    left: 0;
    width: 35px;
    height: 35px;
    border: 1px solid #f3ddd0;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
}

.top-header .header-right-content ul li span {
    display: block;
    font-size: 13px;
    line-height: 1;
    color: #fff;
    font-weight: 500;
    margin-bottom: 2px;
}

.top-header .header-right-content ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.top-header .header-right-content ul li:hover a {
    color: #fff;
}

.top-header .flag-wrap {
    position: relative;
    top: -18px;
    margin-right: 40px;
}

.top-header .flag-wrap .flag-item-top {
    padding-left: 0;
}

.top-header .flag-wrap .flag-item-top .flag-bar {
    position: relative;
}

.top-header .flag-wrap .flag-item-top .flag-bar img {
    width: 40px;
}

.top-header .flag-wrap .flag-item-top .flag-bar span {
    position: absolute;
    top: 13px;
    left: 30px;
    color: #24416b;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 15px;
    font-weight: 500;
    padding-left: 20px;
}

.top-header .flag-wrap .flag-item-top .flag-item-bottom {
    position: absolute;
    bottom: -255px;
    padding: 20px !important;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    width: 250px;
    left: -158px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}

.top-header .flag-wrap .flag-item-top .flag-item-bottom::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    content: "";
    border-top: 0;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    border-left: 8px solid transparent;
    top: -8px;
    right: 57px;
}

.top-header .flag-wrap .flag-item-top .flag-item-bottom .flag-item {
    margin-bottom: 10px;
    padding-left: 0;
    margin-right: 0;
    display: block;
    position: unset;
}

.top-header .flag-wrap .flag-item-top .flag-item-bottom .flag-item:last-child {
    margin-bottom: 0;
}

.top-header .flag-wrap .flag-item-top .flag-item-bottom .flag-item .flag-link {
    color: #000000;
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.top-header .flag-wrap .flag-item-top .flag-item-bottom .flag-item .flag-link img {
    width: 20px;
    margin-right: 5px;
}

.top-header .flag-wrap .flag-item-top .flag-item-bottom .flag-item .flag-link:hover {
    color: #fa4612;
}

.top-header .flag-wrap .flag-item-top:hover .flag-bar span {
    color: #fa4612;
}

.top-header .flag-wrap .flag-item-top:hover .flag-item-bottom {
    visibility: visible;
    opacity: 1;
    bottom: -260px;
}

/*
Prevoz Nav Area Style
======================================================*/
.new-nav-style .navbar-area .navbar-brand {
    display: none;
}

.new-nav-style .is-sticky .navbar-brand {
    display: block;
    margin-left: 30px;
}

.new-nav-style .navbar-area .main-nav {
    position: unset;
    background: #ffffff;
    padding-top: 0;
    padding-bottom: 0;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item a {
    font-weight: 500;
    font-size: 15px;
    color: #000083;
    text-transform: capitalize;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin-left: 0;
    margin-right: 18px;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #f90000a3;
    padding: 5px 9px;
    border-radius: 5px;
}

nav.is-sticky .navbar-nav .nav-item a {
    margin-right: 0 !important;
    margin-left: 7px !important;
    font-size: 12px !important;
    padding: 5px 7px !important;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item a i {
    font-size: 25px;
    line-height: 0;
    position: relative;
    top: 6px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item a.active {
    color: #fff;
    background: #f90000;
    -webkit-text-stroke-width: 0px;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item a.active i {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item a.active::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item:hover a {
    color: #fff;
    background: #f90000;
    -webkit-text-stroke-width: 0px;

}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item:hover a i {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu {
    background-color: #ffffff;
    border: none;
    border-radius: 0;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu::before {
    position: absolute;
    width: 0;
    height: 0;
    content: "";
    border-top: 0;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    border-left: 8px solid transparent;
    top: -8px;
    left: 20px;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
    font-size: 14px;
    color: #24416b;
    position: relative;
    padding: 6px 15px;
    border-bottom: 1px dashed #eeeeee;
    margin-left: 0;
    margin-right: 0;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #247ffb;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
    color: #247ffb;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover::before {
    width: 100%;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover i {
    opacity: 1;
    margin-left: 145px;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
    color: #247ffb;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
    opacity: 0;
    position: relative;
    top: 6px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: all 1s;
    transition: all 1s;
    margin-left: 0;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a i {
    opacity: 1;
    margin-left: 145px;
    color: #247ffb;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    left: 105%;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu::before {
    position: absolute;
    width: 0;
    height: 0;
    content: "";
    border-top: 0;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    border-left: 8px solid transparent;
    top: 35px;
    left: -11px;
    -webkit-transform: rotate(-86deg);
    transform: rotate(-86deg);
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child a {
    border-bottom: none;
}

.new-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child a::before {
    display: none;
}

.new-nav-style .navbar-area.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 666;
    background-color: #313538;
    -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-transition: all .5s;
    transition: all .5s;
    width: 100% !important;
    font-size: 13px;
}



.new-nav-style .dropdown-toggle::after {
    display: none;
}

.new-nav-style .others-option .search-wrap {
    display: inline-block;
    position: relative;
    top: 0px;
    right: -10px;
}

.new-nav-style .others-option .search-wrap a {
    color: #247ffb;
}

.new-nav-style .others-option .search-wrap a i {
    font-size: 23px;
    line-height: 1;
}

.new-nav-style .others-option .search-wrap a:hover {
    color: #fa4612;
}

.new-nav-style .others-option .sidebar-menu {
    background-color: transparent;
    cursor: pointer;
    padding-right: 0;
}

.new-nav-style .others-option .sidebar-menu i {
    font-size: 21px;
    color: #247ffb;
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.new-nav-style .others-option .sidebar-menu i:hover {
    color: #f90000;
}

.mobile-header {
    display: none;
}

/*
Header Style Two Area Style
======================================================*/
.header-style-two {
    position: relative;
}

.header-style-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: #fff;
    -webkit-clip-path: polygon(0 0, 85% 1%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 85% 1%, 100% 100%, 0% 100%);
}

.header-left-content img {
    max-width: 100%;
    height: 90px;
}

.header-left-content a {
    text-align: center;
}

.header-right-content {
    text-align: right;
}

.mean-container .mean-bar {
    float: left;
    width: 100%;
    position: absolute;
    background: transparent;
    padding: 20px 0 0;
    z-index: 555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    height: 55px;
}

.mean-container a.meanmenu-reveal {
    width: 35px;
    height: 30px;
    padding: 12px 15px 0 0;
    position: absolute;
    right: 0;
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    display: block;
    font-weight: 700;
}

.mean-container a.meanmenu-reveal span {
    display: block;
    background: #ffffff;
    height: 4px;
    margin-top: 3px;
    border-radius: 3px;
}

.mean-container .mean-nav {
    float: left;
    width: 100%;
    background: #ffffff;
    margin-top: 55px;
}

.mean-container .mean-nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    border: none;
    list-style-type: none;
}

.mean-container .mean-nav ul li {
    position: relative;
    float: left;
    width: 100%;
}

.mean-container .mean-nav ul li a {
    display: block;
    float: left;
    width: 90%;
    padding: 1em 5%;
    margin: 0;
    text-align: left;
    color: #677294;
    border-top: 1px solid #DBEEFD;
    text-decoration: none;
}

.mean-container .mean-nav ul li a.active {
    color: #000000;
}

.mean-container .mean-nav ul li li a {
    width: 80%;
    padding: 1em 10%;
    color: #677294;
    border-top: 1px solid #DBEEFD;
    opacity: 1;
    filter: alpha(opacity=75);
    text-shadow: none !important;
    visibility: visible;
    text-transform: none;
    font-size: 14px;
}

.mean-container .mean-nav ul li.mean-last a {
    border-bottom: none;
    margin-bottom: 0;
}

.mean-container .mean-nav ul li li li a {
    width: 70%;
    padding: 1em 15%;
}

.mean-container .mean-nav ul li li li li a {
    width: 60%;
    padding: 1em 20%;
}

.mean-container .mean-nav ul li li li li li a {
    width: 50%;
    padding: 1em 25%;
}

.mean-container .mean-nav ul li a:hover {
    background: #252525;
    background: rgba(255, 255, 255, 0.1);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 3px;
    width: 100%;
    height: 24px;
    padding: 12px !important;
    text-align: right;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    font-weight: 700;
    background: transparent;
    border: none !important;
}

.mean-container .mean-push {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    clear: both;
}

.mean-nav .wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Fix for box sizing on Foundation Framework etc. */
.mean-container .mean-bar,
.mean-container .mean-bar * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.mean-remove {
    display: none !important;
}

.mobile-nav {
    display: none;
}

.mobile-nav.mean-container .mean-nav ul li a.active {
    color: #FF2D55;
}

.main-nav {
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    z-index: 555;
    height: auto;
}

.mean-nav .dropdown-toggle::after {
    display: none;
}

.navbar-light .navbar-brand,
.navbar-light .navbar-brand:hover {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
}

.main-nav nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.main-nav nav .navbar-nav .nav-item {
    position: relative;
    padding: 15px 0;
}

.main-nav nav .navbar-nav .nav-item a {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: 15px;
    margin-right: 15px;
}

.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a:focus,
.main-nav nav .navbar-nav .nav-item a.active {
    color: #FF2D55;
}

.main-nav nav .navbar-nav .nav-item:hover a {
    color: #FF2D55;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    background: #0d1028;
    position: absolute;
    top: 80px;
    left: 0;
    width: 250px;
    z-index: 55;
    display: block;
    padding-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
    position: relative;
    padding: 0;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 9px 15px;
    margin: 0;
    display: block;
    color: #ffffff;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
    color: #FF2D55;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    position: absolute;
    left: -100%;
    top: 0;
    opacity: 0 !important;
    visibility: hidden !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    top: -20px !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
    position: absolute;
    left: -100%;
    top: 0;
    opacity: 0 !important;
    visibility: hidden !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu li:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    top: -20px !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
    color: #ffffff;
    text-transform: capitalize;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
    color: #ffffff;
}

.main-nav nav .navbar-nav .nav-item:hover ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.main-nav nav .navbar-nav .nav-item:last-child .dropdown-menu {
    left: auto;
    right: 0;
}

/* Responsive Style */
@media only screen and (max-width: 991px) {
    .mobile-nav {
        display: block;
        position: relative;
    }

    .mobile-nav .logo {
        text-decoration: none;
        position: absolute;
        top: 11px;
        z-index: 666;
        left: 15px;
        color: #fff;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 20px;
    }

    .mean-container .mean-bar {
        background-color: #000;
        padding: 0;
    }

    .mean-container a.meanmenu-reveal {
        padding: 15px 15px 0 0;
    }

    .mobile-nav nav .navbar-nav {
        height: 300px;
        overflow-y: scroll;
    }

    .mobile-nav nav .navbar-nav .nav-item a i {
        display: none;
    }

    .main-nav {
        display: none !important;
    }
}


/*
Sidebar Modal Area Style
======================================================*/
.sidebar-modal {
    position: relative;
}

.sidebar-modal img {
    height: 70px;
    margin: 0 auto;
    display: block;
}

.sidebar-modal .modal-header .close{
    margin: 10px !important;
}

.sidebar-modal .navbar-nav li a {
    padding: 10px 0px 10px 15px;
}

.sidebar-modal .modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 450px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.sidebar-modal .modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0;
    border: none;
    background-color: #ffffff;
}

.sidebar-modal .modal.right .modal-body {
    padding: 30px;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget {
    margin-bottom: 35px;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .title {
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
    color: #000;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 5px;
    text-align: right;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .title::before {
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 70px;
    height: 2px;
    border-radius: 5px;
    background: #247ffb;
    content: '';
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget:last-child {
    margin-bottom: 0;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul {
    padding: 0;
    margin: 0;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li {
    margin-bottom: 10px;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li:last-child {
    margin-bottom: 0;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li a {
    font-size: 14px;
    color: #247ffb;
    font-weight: 500;
    text-transform: capitalize;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li a:hover {
    color: #f90000;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li {
    position: relative;
    font-weight: 500;
    padding-right: 45px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 14px;
    color: #000;
    list-style: none;
    text-align: right;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li span {
    font-size: 13px;
    display: block;
    font-weight: 400;
    color: #555;
    margin-top: 5px;
    text-transform: initial;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li i {
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 29px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #247ffb;
    border-radius: 4px;
    font-size: 15px;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li:hover i {
    color: #ffffff;
    background: #f90000;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li:last-child {
    margin-bottom: 0;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list {
    text-align: right;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li {
    display: inline-block;
    padding-right: 5px;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li a i {
    width: 25px;
    height: 25px;
    display: inline-block;
    text-align: center;
    line-height: 25px;
    border-radius: 4px;
    color: #ffffff;
    background-color: #247ffb;
    font-size: 12px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li a i:hover {
    background-color: #f90000;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li:hover {
    color: #fff;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li a:hover {
    color: #ffffff;
}

.sidebar-modal .modal.right .modal-body .sidebar-modal-widget p {
    text-align: right;
}

.sidebar-modal .modal.right.fade.show .modal-dialog {
    right: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-animation: lightSpeedIn 1000ms linear;
    animation: lightSpeedIn 1000ms linear;
}

.sidebar-modal .modal.right.fade .modal-dialog {
    right: -320px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-animation: lightSpeedIn 1000ms linear;
    animation: lightSpeedIn 1000ms linear;
}

.sidebar-modal .modal-header {
    display: inline;
    padding: 0;
    border: none;
}

.sidebar-modal .modal-header .close {
    height: 30px;
    width: 30px;
    color: #000;
    margin: 0px;
    padding: 0px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: none;
    opacity: 1;
    padding: 15px;
}

.sidebar-modal .modal-header .close i::before {
    margin-left: 0;
    font-size: 20px;
}

.sidebar-modal .modal-header h2 {
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 30px 25px;
}

.sidebar-modal button:focus {
    outline: 0px;
}


/*
Search Box Area Style
======================================================*/
.search-wrap .search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 777;
}

.search-wrap .search .form-control {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 30%;
    color: #fa4612;
    background: #ffff;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin: 0px auto;
    margin-top: -40px;
    padding: 10px;
    outline: none;
    border: 2px solid #ffffff;
    height: 60px;
    border-radius: 5px;
}

.search-wrap .search .form-control:focus {
    color: #000000;
    background-color: #ffffff;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.search-wrap .search .default-btn {
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    margin: auto;
}

.search-wrap .search .default-btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.search-wrap .search .default-btn:hover {
    background-color: #f90000;
}

.search-wrap .search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #ffffff;
    background-color: #f90000;
    border-color: #f90000;
    opacity: 1;
    padding: 10px 17px;
    font-size: 25px;
}

.search-wrap .search .close:hover {
    background-color: body-color;
    color: #ffffff !important;
    opacity: 1 !important;
}

.search-wrap .search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

.search-wrap .search.open::before {
    content: "";
    position: absolute;
    background: #000000;
    width: 100%;
    height: 1000%;
    opacity: 0.9;
    top: 0;
    left: 0;
}

/*================================================
Banner Area CSS
=================================================*/
.slider-section {
    position: relative;
}

.hero-slider .hero-slider-item {
    position: relative;
    z-index: 1;
    height: 850px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.slider-section .owl-carousel .owl-stage-outer {
    height: 700px;
}

.slider-text {
    max-width: 700px;
    margin-top: -130px;
}

.slider-text h1 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 50px;
    font-weight: 800;
    font-family: 'DroidSansArabic', 'Poppins-Regular'
}

.slider-text p {
    color: #0000d8;
    margin-bottom: 30px;
    max-width: 545px;
    opacity: .95;
    font-size: 16px;
    font-family: 'DroidSansArabic', 'Poppins-Regular'
}

.slider-text.text-center {
    margin-left: auto;
    margin-right: auto;
}

.slider-text.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.hero-slider.owl-theme .owl-nav {
    margin-top: 0;
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    left: 30px;
    top: 42%;
    -webkit-transform: translateY(-42%);
    transform: translateY(-42%);
    border: none;
    color: #ffffff;
    margin: 0;
    font-size: 55px;
    border-radius: 50%;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
}

.hero-slider.owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: 30px;
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
    color: #247ffb;
}

.hero-slider.owl-theme:hover .owl-nav [class*=owl-] {
    left: 50px;
    opacity: 1;
    visibility: visible;
}

.hero-slider.owl-theme:hover .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: 50px;
}

.shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.shape-2 {
    position: absolute;
    bottom: 9px;
    left: 0;
    right: 0;
    -webkit-animation: mover 2s linear infinite alternate;
    animation: mover 2s linear infinite alternate;
    z-index: 1;
}

.shape-2 img {
    width: 100%;
}

.shape-3 {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    -webkit-animation: mover 3s infinite alternate;
    animation: mover 3s infinite alternate;
    z-index: 1;
}

.banner-section {
    position: relative;
    z-index: 1;
    height: 850px;
    background-size: cover;
    background-image: url(../img/banner.jpg);
    background-repeat: no-repeat;
    background-position: center center;
}

.banner-text {
    max-width: 700px;
    margin-top: -130px;
}

.banner-text h1 {
    margin-bottom: 15px;
    font-size: 60px;
    font-weight: 800;
    font-family: 'DroidSansArabic', 'Poppins-Regular'
}

.banner-text p {
    margin-bottom: 30px;
    max-width: 545px;
    font-size: 16px;
    font-family: 'DroidSansArabic', 'Poppins-Regular'
}

@-webkit-keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

/*================================================
Boxes Area CSS
=================================================*/
.boxes-section {
    margin-top: -135px;
    z-index: 2;
    position: relative;
}

.single-box {
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    background-color: #ffffff;
    height: 250px;
}

.single-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #247ffb;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: -1;
}

.single-box i {
    color: #247ffb;
    background-color: #d9f6fc;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: inline-block;
}

.single-box i::before {
    font-size: 35px;
}

.single-box h3 {
    text-transform: capitalize;
    margin-top: 20px;
    font-size: 19px;
    margin-bottom: 15px;
}

.single-box p {
    margin-top: 10px;
}

.single-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.single-box:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

.single-box:hover i {
    background-color: #247ffb;
    color: #ffffff;
}

.single-box .default-btn {
    padding: 5px 20px;
    border-radius: 50px;
}

/*================================================
About Area CSS
=================================================*/
.about-img {
    border-radius: 5px;
    position: relative;
    z-index: 1;
    padding-left: 30px;
    padding-bottom: 30px;
}

.about-img img {
    border-radius: 4px;
}

.about-img::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 90%;
    background-color: #247ffb;
    border-radius: 4px;
    z-index: -1;
}

.about-text {
    padding-left: 30px;
}

.about-text span {
    font-size: 17px;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: #247ffb;
    display: block;
}

.about-text h2 {
    margin-bottom: 15px;
    line-height: 42px;
    font-size: 35px;
    font-weight: 500;
}

.about-text ul {
    padding-left: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-right: -15px;
    margin-left: -15px;
    margin-top: -7px;
}

.about-text ul li {
    color: #333;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 12px;
    padding-left: 37px;
    padding-right: 15px;
}

.about-text ul li i {
    color: #247ffb;
    position: absolute;
    left: 15px;
    top: 3px;
}

.about-text p{
    font-size: 16px;
    line-height: 35px;
}

.about-text .default-btn {
    margin-top: 15px;
}

.about-details {
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: url('../img/footer-bg.jpg'), linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-blend-mode: overlay;
}

.about-details p {
    font-size: 16px;
    line-height: 35px;
    color: #fff;
    text-align: right !important;

}

.about-details .section-title {
    margin-bottom: 30px;
}

.about-details .about-details-item {
    margin-bottom: 40px;
    padding: 20px;
}

 .about-details-item p {
text-align: right !important;
}

.about-details .section-title h2 {
    text-align: right;
    color: #fff;
}

.about-details .section-title span {
    text-align: right;
}


/*================================================
Gallery Area CSS
=================================================*/
.gallery-section {
    background: #f1f1f1;
}

.gallery-index {
    background: #247ffb;
}

.gallery-index .section-title2 h2 {
    color: #fff;
}

.gallery-index .section-title2 h2::before {
    background-color: #fff;
}

.gallery-index .section-title2 h2::after {
    background-color: #247ffb;

}

.gallery-index .default-btn {
    background-color: #fff;
    color: #247ffb;
}

.gallery-index .default-btn:hover {
    background-color: #f90000;
    color: #fff;
}

.gallery-index .single-portfolio {
    border: 5px solid #fff;
    border-radius: 10px;
}

.gallery .single-portfolio{
    border: 3px solid #247ffb;
    border-radius: 10px;
}


.single-album {
    margin-bottom: 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    border-radius: 5px;
    height: 260px;
}

.single-album .album-img {
    position: relative;
}

.single-album .album-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    border-radius: 5px 5px 0 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-album .album-img img {
    border-radius: 5px 5px 0 0;
    height: 160px;
    width: 100%;
    object-fit: cover;
}

.single-album .album-content-wrapper {
    padding: 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border: 1px solid #ffffff;
    border-top: none;
    position: relative;
    border-radius: 0 0 5px 5px;
    height: 100px;
}

.single-album .album-content-wrapper h3 {
    font-size: 20px;
    margin-bottom: 0;
    text-align: center;
}

.single-album .album-content-wrapper p {
    line-height: initial;
    margin-bottom: 0;
    margin-top: 10px;
}
.single-album:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.single-album:hover .album-img::before {
    opacity: 0;
}

.single-album:hover .album-content-wrapper {
    border-color: #247ffb;
}


/*================================================
Our Process Area CSS
=================================================*/
.our-process-section {
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
    background-image: url(../img/amazing-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.our-process-section .row {
    position: relative;
    z-index: 1;
}

.our-process-section .row::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 192px;
    content: '';
    z-index: -1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/shape5.png);
    display: none;
}

.col-lg-3:nth-child(2) .single-process,
.col-lg-3:nth-child(4) .single-process {
    margin-top: 30px;
}

.single-process {
    margin-bottom: 30px;
    text-align: center;
}

.single-process i {
    margin-bottom: 20px;
    color: #247ffb;
    background-color: #d6f3fa;
    width: 90px;
    height: 90px;
    display: inline-block;
    text-align: center;
    line-height: 90px;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-process i::before {
    font-size: 38px;
}

.single-process i.flaticon-hand-soap::before {
    margin-left: 12px;
}

.single-process h3 {
    font-size: 20px;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.single-process:hover i {
    background-color: #247ffb;
    color: #ffffff;
}

/*================================================
Services Area CSS
=================================================*/
.services-section {
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border: 3px solid #247ffb;
    margin: 30px;
}

.pipeline {
    background-image: url('../img/pipeline-bg.jpg'), linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-blend-mode: overlay;
}

.polyproplin {
    background-image: url('../img/polyproplin-bg.jpg'), linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-blend-mode: overlay;
}

.plumbing {
    background-image: url('../img/plumbing-bg.jpg'), linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-blend-mode: overlay;
}

.pipeline-tools {
    background-image: url('../img/pipeline-tools-bg.jpg'), linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-blend-mode: overlay;
}

.services-section .section-title h2,
.services-section .section-title span {
    color: #fff;
}

.plumbing .section-title2 h2 {
    color: #fff;
}

.single-services {
    margin-bottom: 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    border-radius: 5px;
    height: 260px;
}

.single-services .services-img {
    position: relative;
}

.single-services .services-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    border-radius: 5px 5px 0 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-services .services-img img {
    border-radius: 5px 5px 0 0;
    height: 160px;
    width: 100%;
    object-fit: cover;
}

.single-services .services-content-wrapper {
    padding: 20px 60px 20px 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border: 1px solid #ffffff;
    border-top: none;
    position: relative;
    border-radius: 0 0 5px 5px;
    height: 100px;
}

.single-services .services-content-wrapper h3 {
    font-size: 20px;
    margin-bottom: 0;
}

.single-services .services-content-wrapper p {
    line-height: initial;
    margin-bottom: 0;
    margin-top: 10px;
}

.single-services .services-content-wrapper .services-icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
}

.single-services .services-content-wrapper .services-icon a {
    border: 1px solid #efefef;
    font-size: 15px;
    color: #247ffb;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
}

.single-services .services-content-wrapper .services-icon a:hover {
    background-color: #247ffb;
    color: #ffffff;
    border-color: #247ffb;
}

.single-services:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.single-services:hover .services-img::before {
    opacity: 0;
}

.single-services:hover .services-content-wrapper {
    border-color: #247ffb;
}

.single-services:hover .services-content-wrapper .services-icon a {
    background-color: #247ffb;
    color: #ffffff;
    border-color: #247ffb;
}

.single-product {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
}

.products-wrapper .single-product img{
    height: 200px;
    object-fit: contain;
}

.products-wrapper.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
    margin-bottom: 30px;
}

.products-wrapper.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 4px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.products-wrapper.owl-theme .owl-dots .owl-dot.active span,
.products-wrapper.owl-theme .owl-dots .owl-dot:hover span {
    background: #247ffb;
}


/*================================================
Why Choose Us Area CSS
=================================================*/
.why-choose-section {
    background-color: #247ffb;
    background-image: url(../img/choose-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.why-choose-wrapper {
    max-width: 865px;
    margin-left: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-right: 30px;
}

.why-choose-wrapper .row{
    padding-right: 25px;
}

.why-choose-wrapper .section-title {
    margin-bottom: 30px;
    padding-right: 0;
}

.why-choose-wrapper .section-title span {
    color: #fff;
}

.why-choose-wrapper .section-title h2,
.why-choose-wrapper .section-title p {
    color: #ffffff;
}

.why-choose-wrapper .section-title p {
    max-width: 700px;
}

.why-choose-wrapper .choose-text-wrapper {
    margin-top: 30px;
    position: relative;
    padding-left: 100px;
}

.why-choose-wrapper .choose-text-wrapper .icon {
    position: absolute;
    left: 0;
    top: 0;
    color: #247ffb;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: inline-block;
    text-align: center;
    line-height: 80px;
    border: 3px solid #ffffff;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.why-choose-wrapper .choose-text-wrapper .icon i::before {
    font-size: 35px;
}

.why-choose-wrapper .choose-text-wrapper .icon::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 50%;
    z-index: -1;
    margin: 3px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.why-choose-wrapper .choose-text-wrapper h3 {
    font-size: 20px;
    margin-bottom: 0;
    color: #ffffff;
}

.why-choose-wrapper .choose-text-wrapper p {
    opacity: 0.95;
    color: #ffffff;
    margin-bottom: 0;
    margin-top: 13px;
}

.why-choose-wrapper .choose-text-wrapper:hover .icon {
    color: #ffffff;
}

.why-choose-wrapper .choose-text-wrapper:hover .icon::before {
    background: #247ffb;
}

.why-choose-img {
    height: 100%;
    background-image: url(../img/choose-1.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.why-choose-img img {
    display: none;
}

/*================================================
Portfolio Area CSS
=================================================*/
.single-portfolio {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
}

.single-portfolio img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 150px;
    object-fit: cover;
}

.single-portfolio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #247ffb;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.single-portfolio .portfolio-content {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 50%;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-portfolio .portfolio-content h3 {
    font-size: 20px;
    margin-bottom: 0;
    color: #ffffff;
}

.single-portfolio .portfolio-content span {
    display: block;
    color: #ffffff;
    opacity: 0.95;
    margin-top: 8px;
}

.single-portfolio .details-btn {
    width: 100%;
    display: block;
    height: 100%;
    z-index: 3;
    position: absolute;
    left: 0;
    top: 0;
}

.single-portfolio .details-btn i {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 44px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
    right: 44%;
    top: 30px;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.single-portfolio .details-btn i:hover,
.single-portfolio .details-btn i:focus {
    background-color: #f90000;
    color: #313232;
    border-color: #f90000;
}

.single-portfolio:hover::before {
    opacity: .7;
    visibility: visible;
}

.single-portfolio:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.single-portfolio:hover .portfolio-content {
    opacity: 1;
    visibility: visible;
}

.single-portfolio:hover .details-btn i {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.portfolio-btn {
    text-align: center;
    margin-top: 30px;
}

/*================================================
Counter Area CSS
=================================================*/
.counter-section {
    -webkit-clip-path: polygon(50% 0%, 74% 3%, 100% 0, 100% 100%, 76% 97%, 50% 100%, 21% 97%, 0 100%, 0 0, 22% 3%);
    clip-path: polygon(50% 0%, 74% 3%, 100% 0, 100% 100%, 76% 97%, 50% 100%, 21% 97%, 0 100%, 0 0, 22% 3%);
    position: relative;
    z-index: 1;
    background-image: url(../img/counter-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter-section::before {
    content: "";
    background-color: #247ffb;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
    z-index: -1;
}

.counter-section.extra-pb {
    padding-bottom: 270px;
}

.single-counter {
    text-align: center;
}

.single-counter h3 {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 50px;
    font-weight: 700;
    font-family: 'DroidSansArabic', 'Poppins-Regular'
}

.single-counter h3 .count-text {
    font-size: 40px;
}

.single-counter p {
    color: #ffffff;
    margin-top: 5px;
    line-height: initial;
    font-size: 16px;
    font-family: 'DroidSansArabic', 'Poppins-Regular'
}

/*================================================
Testimonials Area CSS
=================================================*/
.testimonials-section {
    padding-bottom: 50px;
}

.testimonials-section.mb-minus-200 {
    padding-top: 0;
    margin-top: -180px;
}

.testimonial-single-item {
    padding: 30px;
    border: 1px solid #eeeeee;
    margin-bottom: 30px;
    background-color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.testimonial-single-item .icon {
    margin: 0 0 25px;
    background-color: #dbf6fc;
    border-radius: 50%;
    color: #247ffb;
    display: inline-block;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 95px;
}

.testimonial-single-item .icon i::before {
    font-size: 35px;
}

.testimonial-single-item h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.testimonial-single-item span {
    color: #247ffb;
    font-weight: 400;
    display: block;
}

.testimonial-single-item p {
    line-height: 2;
    margin-bottom: 0;
    margin-top: 15px;
}

.testimonial-single-item .rating {
    margin-top: 15px;
}

.testimonial-single-item .rating i {
    color: #efca00;
}

.testimonial-single-item:hover {
    border-color: #247ffb;
}

.testimonial-wrapper.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
    margin-bottom: 30px;
}

.testimonial-wrapper.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 4px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.testimonial-wrapper.owl-theme .owl-dots .owl-dot.active span,
.testimonial-wrapper.owl-theme .owl-dots .owl-dot:hover span {
    background: #247ffb;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-logo a {
    background-color: #ffffff;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ddd;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 10px;
}

.partner-logo a img {
    width: 135px !important;
    display: inline-block !important;
}

.partner-logo a:hover {
    border-color: #247ffb;
}

.partner-wrapper.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
    margin-bottom: 30px;
}

.partner-wrapper.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 4px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.partner-wrapper.owl-theme .owl-dots .owl-dot.active span,
.partner-wrapper.owl-theme .owl-dots .owl-dot:hover span {
    background: #247ffb;
}



.single-partner {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
}

.single-partner img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 150px;
    border: 1px solid #247ffb;
    ;
}

.single-partner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #247ffb;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.single-partner .partner-content {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 50%;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-partner .partner-content h3 {
    font-size: 20px;
    margin-bottom: 0;
    color: #ffffff;
}

.single-partner .partner-content span {
    display: block;
    color: #ffffff;
    opacity: 0.95;
    margin-top: 8px;
}

.single-partner .details-btn {
    width: 100%;
    display: block;
    height: 100%;
    z-index: 3;
    position: absolute;
    left: 0;
    top: 0;
}

.single-partner .details-btn i {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 44px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
    right: 44%;
    top: 30px;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.single-partner .details-btn i:hover,
.single-partner .details-btn i:focus {
    background-color: #f90000;
    color: #313232;
    border-color: #f90000;
}

.single-partner:hover::before {
    opacity: .7;
    visibility: visible;
}

.single-partner:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.single-partner:hover .partner-content {
    opacity: 1;
    visibility: visible;
}

.single-partner:hover .details-btn i {
    -webkit-transform: scale(1);
    transform: scale(1);
}




/*================================================
Certificate Area CSS
=================================================*/
.certificate-logo a {
    background-color: #ffffff;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 10px;
}

.certificate-logo a img {
    width: 135px !important;
    display: inline-block !important;
}

.certificate-logo a:hover {
    border-color: #247ffb;
}

.certificate-wrapper.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
    margin-bottom: 30px;
}

.certificate-wrapper.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 4px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.certificate-wrapper.owl-theme .owl-dots .owl-dot.active span,
.certificate-wrapper.owl-theme .owl-dots .owl-dot:hover span {
    background: #247ffb;
}


.single-certificate {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
}

.single-certificate img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    height: 150px;
    border: 1px solid #247ffb;
    
}

.single-certificate::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #247ffb;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

.single-certificate .certificate-content {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 50%;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-certificate .certificate-content h3 {
    font-size: 20px;
    margin-bottom: 0;
    color: #ffffff;
}

.single-certificate .certificate-content span {
    display: block;
    color: #ffffff;
    opacity: 0.95;
    margin-top: 8px;
}

.single-certificate .details-btn {
    width: 100%;
    display: block;
    height: 100%;
    z-index: 3;
    position: absolute;
    left: 0;
    top: 0;
}

.single-certificate .details-btn i {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 44px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
    right: 44%;
    top: 30px;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.single-certificate .details-btn i:hover,
.single-certificate .details-btn i:focus {
    background-color: #f90000;
    color: #313232;
    border-color: #f90000;
}

.single-certificate:hover::before {
    opacity: .7;
    visibility: visible;
}

.single-certificate:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.single-certificate:hover .certificate-content {
    opacity: 1;
    visibility: visible;
}

.single-certificate:hover .details-btn i {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.portfolio-btn {
    text-align: center;
    margin-top: 30px;
}


/*================================================
Blog Area CSS
=================================================*/
.blog-section {
    padding-bottom: 50px;
}

.blog-section .pagination-area {
    margin-bottom: 30px;
}

.single-blog-post {
    margin-bottom: 30px;
    background-color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
}

.single-blog-post .post-image {
    position: relative;
    overflow: hidden;
}

.single-blog-post .post-image img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-blog-post .post-content {
    padding: 25px;
}

.single-blog-post .post-content ul {
    padding-left: 0;
    margin-bottom: 15px;
    list-style-type: none;
}

.single-blog-post .post-content ul li {
    display: inline-block;
    margin-right: 15px;
    color: #899198;
}

.single-blog-post .post-content ul li a {
    display: inline-block;
    color: #899198;
}

.single-blog-post .post-content ul li a:hover {
    color: #247ffb;
}

.single-blog-post .post-content ul li i {
    color: #247ffb;
    margin-right: 2px;
}

.single-blog-post .post-content ul li:last-child {
    margin-right: 0;
}

.single-blog-post .post-content h3 {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.4;
}

.single-blog-post .post-content p {
    margin-top: 12px;
    margin-bottom: 0;
}

.single-blog-post .post-content .read-more-btn {
    background: #247ffb;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    border-radius: 40px;
    padding: 7px;
    text-align: center;
    color: #fff;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
}

.single-blog-post .post-content .read-more-btn:hover {
    letter-spacing: 1px;
}

.single-blog-post:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.single-blog-post:hover .post-image img {
    opacity: 0.6;
}

.modal-body .news-image{
    height: 300px;
    width: 100%;
    object-fit: contain;
    margin: 10px auto;
}

/*================================================
Pricing Area CSS
=================================================*/
.pricing-section {
    background-image: url(../img/priceing-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.pricing-text {
    padding-left: 30px;
}

.pricing-text .section-title {
    margin-bottom: 0;
}

.pricing-text .section-title.text-left {
    padding-right: 0;
}

.pricing-text .section-title.text-left .default-btn {
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: unset;
    transform: unset;
    margin-top: 10px;
}

.pricing-content {
    text-align: center;
    background-color: #ffffff;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #f2f2f2;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.pricing-content span {
    color: #247ffb;
    margin-bottom: 11px;
    display: inline-block;
    font-size: 40px;
    font-weight: 700;
}

.pricing-content span sup {
    font-size: 24px;
}

.pricing-content span sub {
    font-size: 12px;
    color: #313232;
    text-transform: capitalize;
    display: inline-block;
    padding-left: 7px;
}

.pricing-content::before {
    z-index: -1;
    content: "";
    position: absolute;
    bottom: -170px;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: mover 2s linear infinite alternate;
    animation: mover 2s linear infinite alternate;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/pricing-shape.png);
}

.pricing-content::after {
    z-index: -1;
    position: absolute;
    bottom: -137px;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-animation: mover 3s linear infinite alternate;
    animation: mover 3s linear infinite alternate;
    background-repeat: no-repeat;
    background-image: url(../img/priceing-shape2.png);
    background-position: center center;
}

.pricing-content i::before {
    font-size: 38px;
    color: #247ffb;
    background-color: #D9F6FC;
    width: 80px;
    height: 80px;
    display: inline-block;
    line-height: 80px;
    border-radius: 50%;
    z-index: 3;
}

.pricing-content p {
    margin-bottom: 0;
}

.pricing-content h3 {
    text-transform: uppercase;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
}

.pricing-content .default-btn {
    margin-top: 20px;
}

.pricing-content:hover {
    border: 1px solid #247ffb;
}

.pricing-wrapper.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
}

.pricing-wrapper.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 4px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.pricing-wrapper.owl-theme .owl-dots .owl-dot.active span,
.pricing-wrapper.owl-theme .owl-dots .owl-dot:hover span {
    background: #247ffb;
}

/*================================================
Estimate Area CSS
=================================================*/
.estimate-section {
    position: relative;
    z-index: 2;
}

.form-wrapper {
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    padding: 50px;
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    margin-bottom: -350px;
    border: 1px solid #247ffb;
    border-radius: 10px;
}

.form-wrapper .form-group {
    margin-bottom: 30px;
}

.form-wrapper label {
    color: #313232;
    display: block;
    text-transform: capitalize;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-wrapper .form-control {
    height: 65px !important;
}

.form-wrapper textarea.form-control {
    height: auto !important;
}

.form-wrapper .default-btn {
    display: table;
    margin: 10px auto 0;
    padding: 20px 50px;
    cursor: pointer;
    border: none;
}

.form-wrapper .help-block ul {
    color: red;
    margin-top: 10px;
}

.form-wrapper #msgSubmit {
    margin-bottom: 0;
}

.form-wrapper #msgSubmit.text-danger,
.form-wrapper #msgSubmit.text-success {
    margin-top: 10px;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-info-box {
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    background: #ffffff;
    padding: 30px;
    height: 250px;
}

.contact-info-box .icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #edf5ff;
    border-radius: 50%;
    font-size: 30px;
    color: #247ffb;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.contact-info-box h3 {
    font-size: 20px;
    margin: 25px 0 12px;
}

.contact-info-box p {
    margin-bottom: 0;
}

.contact-info-box p a {
    color: #818992;
}

.contact-info-box p a:hover {
    color: #247ffb;
}

.contact-info-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.contact-info-box:hover .icon {
    background-color: #247ffb;
    color: #ffffff;
}

.contactForm .form-wrapper {
    z-index: 3;
}

.contactForm .form-wrapper textarea.form-control {
    height: auto !important;
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
    height: 350px;
    position: relative;
    z-index: 1;
    background-image: url(../img/banner.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-title-area::before {
    content: "";
    background-color: #247ffb;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    z-index: -1;
}

.page-title-content {
    margin-top: 20px;
    font-family: 'DroidSansArabic', 'Poppins-Regular';
        position: relative;
    z-index: 4;
}

.page-title-content h1 {
    color: #ffffff;
    margin-bottom: 13px;
    font-size: 45px;
    font-weight: 500;
}

.page-title-content ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.page-title-content ul li {
    display: inline-block;
    position: relative;
    margin: 0 13px;
    color: #f90000;
}

.page-title-content ul li a {
    display: inline-block;
    color: #ffffff;
}

.page-title-content ul li a:hover {
    color: #f90000;
}

.page-title-content ul li::before {
    content: '';
    position: absolute;
    right: -18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.page-title-content ul li:last-child::before {
    display: none;
}

.page-title-content ul li:first-child {
    margin-left: 0;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
    margin-top: 30px;
    text-align: center;
}

.pagination-area .page-numbers {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 3px;
    display: inline-block;
    background-color: #ffffff;
    line-height: 45px;
    color: #313232;
    -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
    box-shadow: 0 2px 10px 0 #d8dde6;
    font-size: 17px;
    font-weight: 500;
}

.pagination-area .page-numbers.current,
.pagination-area .page-numbers:hover,
.pagination-area .page-numbers:focus {
    background: #247ffb;
    color: #ffffff;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

/*================================================
Portfolio Details Area CSS
=================================================*/
.portfolio-details-image {
    margin-bottom: 30px;
    text-align: center;
}

.portfolio-details-desc h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.portfolio-details-desc .portfolio-details-information {
    overflow: hidden;
}

.portfolio-details-desc .portfolio-details-information .single-info-box {
    float: left;
    width: 20%;
    margin-top: 30px;
}

.portfolio-details-desc .portfolio-details-information .single-info-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.portfolio-details-desc .portfolio-details-information .single-info-box ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.portfolio-details-desc .portfolio-details-information .single-info-box ul li {
    display: inline-block;
    margin-right: 7px;
}

.portfolio-details-desc .portfolio-details-information .single-info-box ul li:last-child {
    margin-right: 0;
}

.portfolio-details-desc .portfolio-details-information .single-info-box ul li a {
    color: #818992;
}

.portfolio-details-desc .portfolio-details-information .single-info-box ul li a:hover {
    color: #247ffb;
}

/*================================================
Error Area CSS
=================================================*/
.error-section {
    position: relative;
    height: 100vh;
}

.error-section .error-text {
    text-align: center;
}

.error-section .error-text h2 {
    color: red;
    margin-bottom: 0;
    font-size: 100px;
    font-weight: 700;
}

.error-section .error-text h4 {
    font-size: 30px;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 15px;
}

.error-section .error-text p {
    font-size: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details {
    -webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
    box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
    background: #ffffff;
}

.blog-details .article-img {
    position: relative;
}

.blog-details .article-img .date {
    background: #247ffb;
    color: #ffffff;
    border-radius: 5px;
    padding-top: 19px;
    line-height: 32px;
    position: absolute;
    bottom: 15px;
    width: 100px;
    right: 15px;
    height: 100px;
    text-align: center;
    font-size: 20px;
    font-style: italic;
}

.blog-details .article-content {
    padding: 30px;
}

.blog-details .article-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-details .article-content .blockquote {
    margin-bottom: 20px;
    margin-top: 20px;
    background: #f4f4f4;
    padding: 30px;
    border-left: 4px solid #247ffb;
}

.blog-details .article-content .blockquote p {
    margin-bottom: 0;
    font-size: 18px;
    font-style: italic;
}

.blog-details .article-content .share-post {
    text-align: center;
    margin-top: 30px;
}

.blog-details .article-content .share-post ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.blog-details .article-content .share-post ul li {
    display: inline-block;
}

.blog-details .article-content .share-post ul li a {
    width: 40px;
    font-size: 15px;
    height: 40px;
    display: inline-block;
    line-height: 38px;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    color: #6f6f6f;
}

.blog-details .article-content .share-post ul li a:focus,
.blog-details .article-content .share-post ul li a:hover {
    color: #ffffff;
    border-color: #ffffff;
    background-color: #247ffb;
}

.post-controls-buttons {
    overflow: hidden;
    background: #ffffff;
    padding: 30px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
    box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
    margin-top: 25px;
    margin-bottom: 25px;
}

.post-controls-buttons .controls-left {
    float: left;
}

.post-controls-buttons .controls-right {
    float: right;
}

.post-controls-buttons div a {
    border: 1px solid #eeeeee;
    padding: 8px 20px;
    display: inline-block;
    border-radius: 5px;
    font-size: 16px;
    color: #313232;
}

.post-controls-buttons div a:hover {
    color: #ffffff;
    background-color: #247ffb;
    border-color: #247ffb;
}

.post-comments {
    padding: 30px;
    background: #ffffff;
    -webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
    box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
}

.post-comments h3 {
    font-size: 20px;
    margin-bottom: 0;
}

.post-comments .single-comment {
    position: relative;
    padding-left: 95px;
    margin-top: 30px;
}

.post-comments .single-comment .comment-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 75px;
    height: 75px;
}

.post-comments .single-comment .comment-img img {
    border-radius: 50%;
}

.post-comments .single-comment .comment-content h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.post-comments .single-comment .comment-content span {
    color: #899198;
    font-size: 14px;
}

.post-comments .single-comment .comment-content a {
    position: absolute;
    right: 0;
    bottom: -5px;
    text-transform: uppercase;
    color: #899198;
    border: 1px solid #eeeeee;
    display: inline-block;
    border-radius: 30px;
    font-size: 13px;
    text-align: center;
    padding: 6px 20px;
}

.post-comments .single-comment .comment-content a:hover {
    color: #ffffff;
    border-color: #247ffb;
    background-color: #247ffb;
}

.post-comments .single-comment.left-m {
    margin-left: 85px;
}

.leave-a-reply {
    padding: 30px;
    background: #ffffff;
    -webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
    box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
    margin-top: 25px;
}

.leave-a-reply h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

.leave-a-reply .default-btn {
    border: none;
    cursor: pointer;
}

.leave-a-reply textarea.form-control {
    height: auto !important;
}

/*================================================
Sidebar Area CSS
=================================================*/
.sidebar-area .widget {
    margin-bottom: 30px;
}

.sidebar-area .widget:last-child {
    margin-bottom: 0;
}

.sidebar-area .widget .widget-title {
    font-size: 19px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}

.sidebar-area .widget .widget-title::before {
    width: 50px;
    height: 1px;
    background: #247ffb;
    bottom: -1px;
    left: 0;
    content: '';
    position: absolute;
}

.sidebar-area .widget-search form {
    position: relative;
}

.sidebar-area .widget-search form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 55px;
    border: none;
    background: transparent;
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 0 4px 4px 0;
}

.sidebar-area .widget-search form button:hover {
    color: #ffffff;
    background-color: #247ffb;
}

.sidebar-area .widget_post_categories ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.sidebar-area .widget_post_categories ul li {
    margin-bottom: 10px;
}

.sidebar-area .widget_post_categories ul li:last-child {
    margin-bottom: 0;
}

.sidebar-area .widget_post_categories ul li a {
    color: #313232;
    background-color: #f4f4f4;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
}

.sidebar-area .widget_post_categories ul li a:hover {
    background-color: #247ffb;
    color: #ffffff;
}

.sidebar-area .widget_recent_posts ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.sidebar-area .widget_recent_posts ul li {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    padding-left: 110px;
}

.sidebar-area .widget_recent_posts ul li .recent-post-thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
}

.sidebar-area .widget_recent_posts ul li .recent-post-content h3 {
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 15px;
    font-weight: 500;
}

.sidebar-area .widget_recent_posts ul li .recent-post-content .date {
    display: block;
    margin-top: 3px;
    font-size: 13px;
    color: #899198;
}

.sidebar-area .widget_recent_posts ul:last-child {
    margin-bottom: 0;
}

.sidebar-area .widget_tag_cloud .widget-title {
    margin-bottom: 21px;
}

.sidebar-area .widget_tag_cloud .tagcloud a {
    background: transparent;
    color: #899198;
    border: 1px solid #eeeeee;
    padding: 8px 15px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 4px;
    font-size: 13px !important;
    font-weight: 500;
}

.sidebar-area .widget_tag_cloud .tagcloud a:hover {
    border-color: #247ffb;
    color: #ffffff;
    background-color: #247ffb;
}

.sidebar-area .widget_text ul {
    padding-left: 0;
    list-style-type: none;
    overflow: hidden;
    margin-left: -3px;
    margin-bottom: -6px;
    margin-right: -3px;
}

.sidebar-area .widget_text ul li {
    float: left;
    padding: 0 3px;
    width: 33.3333%;
    margin-bottom: 6px;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-image {
    text-align: center;
}

.faq-content .faq-panel {
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 17px;
    position: relative;
}

.faq-content .faq-panel:last-child {
    margin-bottom: 0;
}

.faq-content .faq-panel .faq-title {
    border-bottom: none;
    color: #313232;
    cursor: pointer;
    padding: 15px 40px 15px 15px;
    margin: 0;
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    font-size: 16px;
    font-weight: 500;
}

.faq-content .faq-panel .faq-title i {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.faq-content .faq-panel .faq-title.active {
    color: #ffffff;
    background-color: #247ffb;
}

.faq-content .faq-panel .faq-textarea {
    display: none;
    padding: 15px;
}

/*================================================
Services Details Area CSS
=================================================*/
.services-details-content {
    margin-top: 30px;
}

.services-details-content h3 {
    font-size: 20px;
    margin-bottom: 13px;
}

.services-details-content .why-choose {
    margin-top: 30px;
    margin-bottom: 30px;
}

.services-details-content .why-choose .why-choose-box {
    position: relative;
    padding-left: 25px;
}

.services-details-content .why-choose .why-choose-box i {
    color: #247ffb;
    position: absolute;
    left: 0;
    top: 3px;
}

.services-details-content .services-more-content {
    margin-bottom: 40px;
}

.services-details-content .services-more-content .item-feature {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.services-details-content .services-more-content .item-feature li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.services-details-content .services-more-content .item-feature li:last-child {
    margin-bottom: 0;
}

.services-details-content .services-more-content .item-feature li::after {
    content: "\f00c";
    color: #247ffb;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 900;
}

.services-details-content .services-more-info {
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    padding: 30px 30px 10px;
    text-align: center;
}

.services-details-content .services-more-info h3 {
    margin-bottom: 30px;
}

.services-details-content .services-more-info .single-info {
    margin-bottom: 20px;
    text-align: left;
    background-color: #f8f8f8;
    padding: 20px;
}

.services-details-content .services-more-info .single-info h4 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: normal;
}

.services-details-content .services-more-info .single-info span {
    display: block;
    margin-top: 8px;
    font-weight: 500;
    font-size: 16px;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-section {
    padding-top: 100px;
    -webkit-clip-path: polygon(47% 0, 95% 5%, 101% 0, 101% 101%, 0 101%, 0 0, 6% 4%);
    clip-path: polygon(47% 0, 95% 5%, 101% 0, 101% 101%, 0 101%, 0 0, 6% 4%);
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-image: url(../img/footer-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 130%;
}

.footer-section.extra-pt {
    padding-top: 350px;
}

.footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #247ffb;
    opacity: 0.95;
}

.footer-shape-1 {
    background-color: #247ffb;
    position: absolute;
    top: 30px;
    left: 0;
    opacity: 0.5;
    height: 40px;
    width: 100%;
    -webkit-animation: mover 2s linear infinite alternate;
    animation: mover 2s linear infinite alternate;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 81% 85%, 50% 100%, 20% 84%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 100%, 81% 85%, 50% 100%, 20% 84%, 0 100%, 0 0);
    z-index: -1;
}

.footer-shape-2 {
    background-color: #247ffb;
    z-index: -1;
    position: absolute;
    top: 9px;
    left: 0;
    height: 40px;
    opacity: 0.9;
    width: 100%;
    -webkit-animation: mover 3s linear infinite alternate;
    animation: mover 3s linear infinite alternate;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 80% 90%, 50% 100%, 20% 90%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 100% 100%, 80% 90%, 50% 100%, 20% 90%, 0 100%, 0 0);
}

.single-footer-widget {
    margin-bottom: 30px;
}

.single-footer-widget .logo {
    margin-bottom: 25px;
}

.single-footer-widget .logo a.footer-logo {
    font-size: 30px;
    color: #fff;
}

.single-footer-widget .logo a {
    display: inline-block;
}

.single-footer-widget .logo p {
    color: #ffffff;
    margin-bottom: 0;
    margin-top: 20px;
}

.single-footer-widget p {
    color: #ffffff;
}

.single-footer-widget .newsletter-form {
    position: relative;
}

.single-footer-widget .newsletter-form .form-control {
    border: none;
    border-radius: 0;
    background-color: #ffffff;
}

.single-footer-widget .newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 60px;
    cursor: pointer;
    background: #f90000;
    color: #313232;
    font-size: 20px;
    border: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-footer-widget .newsletter-form button:hover {
    color: #ffffff;
    background-color: #313232;
}

.single-footer-widget .newsletter-form #validator-newsletter {
    position: absolute;
    left: 0;
    bottom: -30px;
    color: #ffffff;
}

.single-footer-widget h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 25px;
}

.single-footer-widget .footer-nav-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.single-footer-widget .footer-nav-list li {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 14px;
}

.single-footer-widget .footer-nav-list li a {
    color: #ffffff;
}

.single-footer-widget .footer-nav-list li a:hover {
    color: #f90000;
}

.single-footer-widget .footer-nav-list li:last-child {
    margin-bottom: 0;
}

.single-footer-widget .footer-info-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.single-footer-widget .footer-info-list li {
    margin-bottom: 14px;
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
}

.single-footer-widget .footer-info-list li span {
    display: inline-block;
    font-weight: normal;
}

.single-footer-widget .footer-info-list li:last-child {
    margin-bottom: 0;
}

.single-footer-widget .footer-info-list li a {
    display: block;
    color: #ffffff;
    margin-bottom: 3px;
}

.single-footer-widget .footer-info-list li a:hover {
    color: #f90000;
}

.single-footer-widget .working-hours {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.single-footer-widget .working-hours li {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 14px;
}

.single-footer-widget .working-hours li:last-child {
    margin-bottom: 0;
}

.single-footer-widget .social-links {
    padding-left: 0;
    list-style-type: none;
    margin-top: 30px;
    margin-bottom: 0;
}

.single-footer-widget .social-links li {
    display: inline-block;
    line-height: initial;
    margin-right: 15px;
}

.single-footer-widget .social-links li a {
    color: #ffffff;
    font-size: 16px;
}

.single-footer-widget .social-links li a:hover {
    color: #f90000;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.single-footer-widget .social-links li:last-child {
    margin-right: 0;
}

.copyright-area {
    text-align: center;
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    padding-bottom: 30px;
}

.copyright-area p {
    font-size: 16px;
    color: #ffffff;
}

.copyright-area p a {
    display: inline-block;
    color: #fff;
    font-weight: 500;
}

/*================================================
Back To Top CSS
=================================================*/
#toTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    display: none;
    z-index: 3;
}

#toTop i {
    background-color: #247ffb;
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 39px;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-align: center;
    font-size: 18px;
}

#toTop i:hover {
    background-color: #f90000;
    color: #313232;
}

/*================================================
WhatsApp Icon CSS
=================================================*/

.floating-wpp {
    position: fixed;
    bottom: 30px;
    left: 15px;
    font-size: 14px;
    transition: bottom .2s;
    right:20px !important;
}

.floating-wpp .floating-wpp-button {
    position: relative;
    border-radius: 50%;
    box-shadow: 1px 1px 4px rgba(60, 60, 60, .4);
    transition: box-shadow .2s;
    cursor: pointer;
    overflow: hidden
}

.floating-wpp .floating-wpp-button img,
.floating-wpp .floating-wpp-button svg {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0)
}


.floating-wpp:hover .floating-wpp-button {
    box-shadow: 1px 2px 8px rgba(60, 60, 60, .4)
}

.floating-wpp .floating-wpp-popup {
    border-radius: 6px;
    background-color: #E5DDD5;
    position: absolute;
    overflow: hidden;
    padding: 0;
    box-shadow: 1px 2px 8px rgba(60, 60, 60, .25);
    width: 0;
    height: 0;
    bottom: 0;
    opacity: 0;
    transition: bottom .1s ease-out, opacity .2s ease-out;
    transform-origin: bottom
}

.floating-wpp .floating-wpp-popup.active {
    padding: 0 12px 12px;
    width: 260px;
    height: auto;
    bottom: 82px;
    opacity: 1
}

.floating-wpp .floating-wpp-popup .floating-wpp-message {
    background-color: #fff;
    padding: 8px;
    border-radius: 0 5px 5px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, .15);
    opacity: 0;
    transition: opacity .2s
}

.floating-wpp .floating-wpp-popup.active .floating-wpp-message {
    opacity: 1;
    transition-delay: .2s
}

.floating-wpp .floating-wpp-popup .floating-wpp-head {
    text-align: right;
    color: #fff;
    margin: 0 -15px 10px;
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    cursor: pointer
}

.floating-wpp .floating-wpp-input-message {
    background-color: #fff;
    margin: 10px -15px -15px;
    padding: 0 15px;
    display: flex;
    align-items: center
}

.floating-wpp .floating-wpp-input-message textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
    padding: 8px;
    margin: 10px 0;
    width: 100%;
    max-width: 100%;
    font-family: inherit;
    font-size: inherit;
    resize: none
}

.floating-wpp .floating-wpp-btn-send {
    margin-right: 12px;
    font-size: 0;
    cursor: pointer
}

/*# sourceMappingURL=style.css.map */