/*======================================
[ CSS Table of contents ]
* Global CSS
* Header CSS
	+ Topbar
	+ Logo
	+ Main Menu
* Hero Slider CSS
* Feautes CSS
* Fun Facts CSS
* Why Choose CSS
* Call to Action CSS
* Portfolio CSS
	+ Portfolio Single CSS
* Services CSS
* Blog CSS
* NewsLetter CSS
* Pricing Table CSS
* Clients CSS
* Contact Us CSS
* Error 404 CSS
* Mail Success CSS 
* About Us CSS
* Footer CSS
========================================*/
@media (max-width: 767px) {
    .dropdown .deep-dropdown {
        width: 200px !important;
        right: 0 !important;
        top: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
:root {
    --primary-color: #000a95;
    --second-color: #999;
    --white-color: #fff;
}
/* WebKit Browsers (Safari, Chrome, etc.) */
::-webkit-scrollbar {
    height: 8px; /* Adjust the height for horizontal scrollbars */
    width: 8px; /* Adjust the width for vertical scrollbars */
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color); /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the scrollbar thumb */
}

::-webkit-scrollbar-track {
    background-color: #e0e0e0; /* Color of the scrollbar track */
    border-radius: 10px; /* Rounded corners for the scrollbar track */
}
/* Apply this only in Firefox */
@-moz-document url-prefix() {
    * {
        scrollbar-color: var(--primary-color) #e0e0e0; /* Thumb color, Track color */
        scrollbar-width: thin; /* Can be 'auto', 'thin', or 'none' */
    }
}
/* Hide the default checkbox */
.custom-checkbox input[type="checkbox"] {
    display: none;
}

/* Create a custom checkbox */
.custom-checkbox {
    position: relative;
    padding-left: 30px; /* Space for the custom checkmark */
    cursor: pointer;
    display: inline-block;
    line-height: 20px; /* Adjust as needed */
}

/* Style the custom checkmark */
.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px; /* Size of the custom checkbox */
    width: 20px; /* Size of the custom checkbox */
    background-color: #e0e0e0; /* Background color of the checkbox */
    border-radius: 5px; /* Rounded corners for the checkbox */
}

/* Style the checkmark when the checkbox is checked */
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #000a95; /* Background color of the checked checkbox */
}

/* Style the checkmark inside the custom checkbox */
.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input[type="checkbox"]:checked + .checkmark:after {
    display: block;
    left: 7px; /* Position of the checkmark icon */
    top: 3px; /* Position of the checkmark icon */
    width: 5px; /* Width of the checkmark icon */
    height: 10px; /* Height of the checkmark icon */
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/*=============================
	Global CSS 
===============================*/
body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #888;
}
.dropdown .deep-dropdown {
    background: var(--white-color);
    width: 220px;
    position: absolute;
    right: -220px;
    top: 0;
    z-index: 999;
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 5px #3333334d;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    border-left: 3px solid var(--primary-color);
}
.dropdown li:hover .deep-dropdown {
    visibility: visible;
    opacity: 1;
}
.bread-list li a:hover {
    color: #9ca0d5 !important;
}
.pro-features {
    position: fixed;
    right: -300px;
    width: 300px;
    height: auto;
    line-height: 46px;
    font-size: 14px;
    background: var(--white-color);
    text-align: left;
    color: #333;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: -4px 0px 5px #00000036;
    color: var(--white-color);
    z-index: 9999;
    padding: 20px 30px 30px 30px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.pro-features.active {
    right: 0;
}
.pro-features li.big-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}
.pro-features li.title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.pro-features .button .btn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    display: inline-block;
    float: left;
    font-size: 13px;
    width: 100%;
    text-transform: capitalize;
}
.pro-features li {
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 22px;
    margin-bottom: 10px;
}
.get-pro {
    position: absolute;
    left: -80px;
    width: 80px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    border-radius: 5px 0 0 5px;
    background: var(--primary-color);
    text-align: center;
    color: var(--white-color);
    top: 0;
    cursor: pointer;
    box-shadow: -4px 0px 5px #00000036;
}
.get-pro:hover {
}
#scrollUp {
    bottom: 15px;
    right: 15px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 25px;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    padding: 0;
    border-radius: 3px;
    box-shadow: 0px 0px 10px #00000026;
}
#scrollUp:hover {
    background: #2c2d3f;
}
/* Color Plate */
.color-plate {
    position: fixed;
    display: block;
    z-index: 99998;
    padding: 20px;
    width: 245px;
    background: var(--white-color);
    right: -245px;
    text-align: left;
    top: 30%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
    box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
}
.color-plate.active {
    right: 0;
}
.color-plate .color-plate-icon {
    position: absolute;
    left: -48px;
    width: 48px;
    height: 45px;
    line-height: 45px;
    font-size: 21px;
    border-radius: 5px 0 0 5px;
    background: var(--primary-color);
    text-align: center;
    color: var(--white-color) !important;
    top: 0;
    cursor: pointer;
    box-shadow: -4px 0px 5px #00000036;
}
.color-plate h4 {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 500;
}
.color-plate p {
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 20px;
}
.color-plate span {
    width: 42px;
    height: 35px;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    margin-right: 3px;
}
.color-plate span:hover {
    cursor: pointer;
}
.color-plate span.color1 {
    background: var(--primary-color);
}
.color-plate span.color2 {
    background: #2196f3;
}
.color-plate span.color3 {
    background: #32b87d;
}
.color-plate span.color4 {
    background: #fe754a;
}
.color-plate span.color5 {
    background: #f82f56;
}
.color-plate span.color6 {
    background: #01b2b7;
}
.color-plate span.color7 {
    background: #6c5ce7;
}
.color-plate span.color8 {
    background: #85ba46;
}
.color-plate span.color9 {
    background: #273c75;
}
.color-plate span.color10 {
    background: #fd7272;
}
.color-plate span.color11 {
    background: #badc58;
}
.color-plate span.color12 {
    background: #44ce6f;
}
/*=============================
	End Global CSS 
===============================*/

/*===================
	Start Header CSS 
=====================*/
.header {
    background-color: var(--white-color);
    position: relative;
}
.header .navbar-collapse {
    padding: 0;
}
/* Topbar */
.header .topbar {
    background-color: var(--white-color);
    border-bottom: 1px solid #eee;
}
.header .topbar {
    padding: 15px 0;
}
.header .top-link {
    float: left;
    display: flex;
    align-items: center;
}
.header .top-link li {
    display: inline-block;
    margin-right: 15px;
}
.header .top-link li:last-child {
    margin-right: 0px;
}
.header .top-link li a img {
    width: 20px;
    height: 20px;
    border-radius: 30%;
}
.header .top-link li a img:hover {
    transform: scale(1.2);
    transition: all 0.4s ease;
}
.header .top-contact {
    float: right;
}
.header .top-contact li {
    display: inline-block;
    margin-right: 25px;
    color: #2c2d3f;
}
.header .top-contact li:last-child {
    margin-right: 0;
}
.header .top-contact li a {
    font-size: 14px;
}
.header .top-contact li a:hover {
    color: var(--primary-color);
}
.header .top-contact li i {
    color: var(--primary-color);
    margin-right: 8px;
}
.header .header-inner {
    background: var(--white-color);
    z-index: 999;
    width: 100%;
}
.get-quote {
    margin-top: 12px;
}
.get-quote .btn {
    color: var(--white-color);
}
.header .logo {
    float: left;
    margin-top: 18px;
}
.header .navbar {
    background: none;
    box-shadow: none;
    border: none;
    margin: 0;
    height: 0px;
    min-height: 0px;
}
.header .nav li {
    margin-right: 15px;
    float: left;
    position: relative;
}
.header .nav li:last-child {
    margin: 0;
}
.header .nav li a {
    color: #2c2d3f;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 25px 12px;
    position: relative;
    display: inline-block;
    position: relative;
}
.header .nav li a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0%;
    background: var(--primary-color);
    border-radius: 5px 5px 0 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.header .nav li.active a:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}
.header .nav li.active a {
    color: var(--primary-color);
}
.header .nav li:hover a:before {
    opacity: 1;
    width: 100%;
    visibility: visible;
}
.header .nav li:hover a {
    color: var(--primary-color);
}
.header .nav li a i {
    display: inline-block;
    margin-left: 1px;
    font-size: 13px;
}
/* Middle Header */
.header.style2 .header-inner {
    border-top: 1px solid #eee;
}
.header.style2 .logo {
    margin-top: 6px;
}
.header .middle-header {
    background: var(--white-color);
    padding: 20px 0px;
}
.header .widget-main {
    float: right;
}
.header.style2 .get-quote {
    margin-top: 0;
}
.header .single-widget {
    position: relative;
    float: left;
    margin-right: 30px;
    padding-left: 55px;
}
.header .single-widget:last-child {
    margin: 0;
}
.header .single-widget .logo {
    margin: 0;
    padding: 0;
    margin-top: 7px;
}
.header .single-widget i {
    position: absolute;
    left: 0;
    top: 6px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 4px;
    text-align: center;
    font-size: 15px;
}
.header .single-widget h4 {
    font-size: 15px;
    font-weight: 500;
}
.header .single-widget p {
    margin-bottom: 5px;
    text-transform: capitalize;
}
.header .single-widget.btn {
    margin-left: 0;
}
/* Dropdown Menu */
.header .nav li .dropdown {
    background: var(--white-color);
    width: 220px;
    position: absolute;
    left: -20px;
    top: 100%;
    z-index: 999;
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 5px #3333334d;
    transform-origin: 0 0 0;
    transform: scaleY(0.2);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    top: 74px;
    border-left: 3px solid var(--primary-color);
}
.header .nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
.header .nav li .dropdown li {
    float: none;
    margin: 0;
    border-bottom: 1px dashed #eee;
}
.header .nav li .dropdown li:last-child {
    border: none;
}
.header .nav li .dropdown li a {
    padding: 12px 15px;
    color: #666;
    display: block;
    font-weight: 400;
    text-transform: capitalize;
    background: transparent;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.header .nav li .dropdown li .deep-dropdown-a {
    color: #555555 !important;
}
.header .nav li .dropdown li .deep-dropdown-a:hover {
    color: var(--primary-color) !important;
}
.header .nav li .dropdown li a:before {
    display: none;
}
.header .nav li .dropdown li:last-child a {
    border-bottom: 0px;
}
.header .nav li .dropdown li:hover a {
    color: var(--primary-color);
}
.header .nav li .dropdown li a:hover {
    border-color: transparent;
}
/* Right Bar */
.header.style2 .main-menu {
    display: inline-block;
    float: left;
}
.header .right-bar {
    float: right;
}
.header .right-bar {
    padding-top: 20px;
}
.header .right-bar {
    display: inline-block;
}
.header .right-bar a {
    color: var(--white-color);
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    background: var(--primary-color);
    border-radius: 4px;
    display: block;
    font-size: 12px;
}
.header .right-bar li a:hover {
    color: var(--white-color);
    background: #27ae60;
}
.header .search-top.active .search i:before {
    content: "\eee1";
    font-size: 15px;
}
/* Search */
.header .search-form {
    position: absolute;
    right: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    top: 74px;
    box-shadow: 0px 0px 10px #0000001c;
    border-radius: 4px;
    overflow: hidden;
    transform: scale(0);
}
.header .search-top.active .search-form {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.header .search-form input {
    width: 282px;
    height: 50px;
    line-height: 50px;
    padding: 0 70px 0 20px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 3px;
    border: none;
    background: var(--white-color);
    color: #2c2d3f;
}
.header .search-form button {
    position: absolute;
    right: 0;
    height: 50px;
    top: 0;
    width: 50px;
    background: var(--primary-color);
    border: none;
    color: var(--white-color);
    border-radius: 0 4px 4px 0;
    border-left: 1px solid transparent;
}
.header .search-form button:hover {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: #e6e6e6;
}
/* Header Sticky */
.header.sticky .header-inner {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    bottom: initial;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    animation: fadeInDown 0.5s both 0.1s;
    box-shadow: 0px 0px 13px #00000054;
}
/*=========================
	End Header CSS
===========================*/

/*===========================
	Start Newsletter Popup CSS
=============================*/
/* Popup container */
.popup-container {
    position: fixed;
    inset: 0;
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: blurIn 0.6s ease;
}

@keyframes blurIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Popup box */
.popup-box {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 320px;
    padding-top: 2rem;
    padding-bottom: 1rem;
    display: flex;
}

/* Responsive width for medium screens */
@media (min-width: 768px) {
    .popup-box {
        width: 480px;
    }
}

/* Popup content */
.popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
}

/* Padding for medium screens */
@media (min-width: 768px) {
    .popup-content {
        padding: 2rem;
    }
}

/* Close button */
.close-button {
    position: absolute;
    top: 0;
    right: 2rem;
    padding: 0.5rem;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
}

.close-button:hover {
    background-color: #e2e8f0;
}

/* Title */
.popup-title {
    margin-top: 8px;
    font-size: 1.875rem;
    font-weight: bold;
    color: #000a95;
    animation: bounce 1s infinite;
    text-align: center;
}

/* Text */
.popup-text {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
    text-align: center;
}

/* Form Container */
.form-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 20px;
}

/* Input field */
.popup-input {
    height: 2.5rem;
    font-size: 0.875rem;
    width: 100%;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    text-indent: 1.5rem;
}

/* Subscribe button */
.popup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 100%;
    border-radius: 0.5rem;
    background-color: #000a95;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.popup-button:hover {
    background-color: #000;
}

/* Social links */
.social-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 768px) {
    .social-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.social-container .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #000a95;
    border: 1px solid #000a95;
    border-radius: 0.5rem;
    margin: 5px;
    text-align: center;
    transition: background-color 0.2s;
}

.social-container .social-link:hover {
    background-color: #000a95;
    color: white;
}

/* Icon size */
.social-container .icon {
    padding-right: 1rem;
    font-size: 1.25rem;
}

/* Animations */
@keyframes bounce {
    0%,
    100% {
        transform: translateY(-10%);
    }
    50% {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
/*===========================
	End Newsletter Popup CSS
=============================*/

/*===========================
	Start Hero Area CSS
=============================*/
.slider .single-slider {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slider .single-slider:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    opacity: 0.2;
}
.slider .single-slider .text {
    margin-top: 120px;
}
.slider.index2 .single-slider .text {
    margin-top: 150px;
}
.slider .single-slider h1 {
    color: #2c2d3f;
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 42px;
}
.slider .single-slider h1 span {
    color: var(--second-color);
}
.slider .single-slider p {
    color: #2c2d3f;
    margin-top: 27px;
    font-weight: 400;
}
.slider .single-slider .button {
    margin-top: 30px;
}
.slider .single-slider .btn {
    color: var(--white-color);
    background: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    margin: 0;
    margin-right: 10px;
}
.slider .single-slider .btn:last-child {
    margin: 0;
}
.slider .single-slider .btn.primary {
    background: #2c2d3f;
    color: var(--white-color);
}
.slider .single-slider .btn.primary:before {
    background: var(--primary-color);
}
.slider .single-slider .custom-hover:hover {
    color: var(--white-color) !important;
}
.slider .owl-carousel .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -25px;
}
.slider .owl-carousel .owl-nav div {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 26px;
    position: absolute;
    margin: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0;
    border-radius: 50%;
}
.slider .owl-carousel .owl-nav div:hover {
    background: #2c2d3f;
    color: var(--white-color);
}
.slider .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: 20px;
}
.slider .owl-carousel .owl-controls .owl-nav .owl-next {
    right: 20px;
}

/* Slider Animation */
.owl-item.active .single-slider h1 {
    animation: fadeInUp 1s both 0.6s;
}
.owl-item.active .single-slider p {
    animation: fadeInUp 1s both 1s;
}
.owl-item.active .single-slider .button {
    animation: fadeInDown 1s both 1.5s;
}
/*===========================
	End Hero Area CSS
=============================*/

/*=============================
	Start Feautes CSS
===============================*/
.Feautes.index2 {
    padding-top: 100px;
}
.Feautes.testimonial-page {
    padding-top: 100px;
}
.Feautes .single-features {
    text-align: center;
    position: relative;
    padding: 10px 20px;
}
.Feautes .single-features::before {
    position: absolute;
    content: "";
    right: -72px;
    top: 60px;
    width: 118px;
    border-bottom: 3px dotted var(--primary-color);
}
.Feautes .single-features.last::before {
    display: none;
}
.Feautes .single-features .signle-icon {
    position: relative;
}
.Feautes .single-features .signle-icon i {
    font-size: 50px;
    color: var(--primary-color);
    position: absolute;
    left: 50%;
    margin-left: -50px;
    top: 0;
    height: 100px;
    width: 100px;
    line-height: 100px;
    text-align: center;
    border: 1px solid #dddddd;
    border-radius: 100%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.Feautes .single-features:hover .signle-icon i {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: transparent;
}
.Feautes .single-features h3 {
    padding-top: 128px;
    color: #2c2d3f;
    font-weight: 600;
    font-size: 21px;
}
.Feautes .single-features p {
    margin-top: 20px;
}
/*=============================
	End Feautes CSS
===============================*/

/*=======================
	Start Fun Facts CSS
=========================*/
.fun-facts {
    position: relative;
}
.fun-facts.section {
    padding: 120px 0;
}
.fun-facts {
    background: url("img/fun-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
.fun-facts .single-fun i {
    position: absolute;
    left: 0;
    font-size: 62px;
    color: var(--white-color);
    height: 70px;
    width: 70px;
    line-height: 67px;
    font-size: 28px;
    text-align: center;
    padding: 0;
    margin: 0;
    border: 2px solid var(--white-color);
    border-radius: 0px;
    top: 50%;
    margin-top: -35px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 50%;
}
.fun-facts .single-fun:hover i {
    color: var(--primary-color);
    background: var(--white-color);
    border-color: transparent;
}
.fun-facts .single-fun .content {
    padding-left: 80px;
}
.fun-facts .single-fun span {
    color: var(--white-color);
    font-weight: 600;
    font-size: 30px;
    position: relative;
    display: block;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s eas;
    display: block;
    margin-bottom: 7px;
}
.fun-facts .single-fun p {
    color: var(--white-color);
    font-size: 15px;
}
/*===================
	End Fun Facts
=====================*/

/*===================
	Why choose CSS
=====================*/
.why-choose .choose-left h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c2d3f;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 24px;
}
.why-choose .choose-left h3:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: var(--primary-color);
}
.why-choose .choose-left p {
    margin-bottom: 10px;
}
.why-choose .choose-left .list {
}
.why-choose .choose-left .list li {
    color: #868686;
    margin-bottom: 12px;
}
.why-choose .choose-left .list li:last-child {
    margin-bottom: 0px;
}
.why-choose .choose-left .list li i {
    height: 15px;
    width: 15px;
    line-height: 15px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 14px;
    border-radius: 100%;
    padding-left: 2px;
    margin-right: 16px;
}
/* Start Faq CSS */
.why-choose {
    background: var(--white-color);
}
.why-choose .choose-right {
    height: 100%;
    width: 100%;
    background-image: url("img/about.png");
    border-radius: 10px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 4px 4px 8px var(--primary-color);
    position: relative;
}
/*=======================
	End Why choose CSS
=========================*/

/*=======================
	Start Videos CSS
=========================*/
.videos .custom-height {
    height: 250px;
}
.videos .video-image {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 1px 1px 5px var(--primary-color);
    position: relative;
}
.videos .video-image .video {
    color: var(--white-color);
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -35px;
    margin-top: -35px;
    font-size: 21px;
    background: var(--primary-color);
    padding-left: 4px;
}
.videos .video-image .video:hover {
    transform: scale(1.1);
}
.videos .video-image .waves-block .waves {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--white-color);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
    left: 50%;
    margin-left: -100px;
    top: 50%;
    margin-top: -100px;
}
.videos .video-image .waves-block .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.videos .video-image .waves-block .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.videos .video-image .waves-block .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
/*=======================
	End Videos CSS
=========================*/

/*===============================
	Start Call to action CSS
=================================*/
.call-action {
    background-image: url("img/call-bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
}
.call-action .content {
    text-align: center;
    padding: 100px 265px;
}
.call-action .content h2 {
    color: var(--white-color);
    font-size: 32px;
    font-weight: 600;
    line-height: 46px;
}
.call-action .content p {
    color: var(--white-color);
    margin: 30px 0px;
    font-size: 15px;
}
.call-action .content .btn {
    background: var(--white-color);
    margin-right: 20px;
    font-weight: 500;
    border: 1px solid var(--white-color);
    color: var(--primary-color);
}
.call-action .content .btn:before {
    background: var(--primary-color);
}
.call-action .content .btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.call-action .content .btn:last-child {
    margin-right: 0px;
}
.call-action .content .second {
    border: 1px solid var(--white-color);
    color: var(--white-color);
    background: transparent;
    color: var(--white-color) !important;
}
.call-action .content .second:before {
    background: var(--white-color);
}
.call-action .content .second:hover {
    color: var(--primary-color);
    border-color: transparent;
    background: var(--white-color);
}
.call-action .content .second i {
    margin-left: 10px;
}
/*===============================
	Start Call to action CSS
=================================*/

/*==========================
	Start Portfolio CSS
============================*/
.portfolio {
    background: #fdfdfd;
}
.portfolio .single-pf {
    position: relative;
}
.portfolio .single-pf img {
    height: 100%;
    width: 100%;
}
.portfolio .single-pf:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 1;
}
.portfolio .single-pf:hover:before {
    opacity: 0.7;
    visibility: visible;
}
.portfolio .single-pf .btn {
    color: var(--primary-color);
    z-index: 3;
    background: var(--white-color);
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 0px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    height: 48px;
    width: 150px;
    text-align: center;
    line-height: 48px;
    padding: 0;
    font-weight: 500;
    font-size: 14px;
    margin-left: -75px;
    margin-top: -24px;
    border-radius: 4px;
}
.portfolio .single-pf:hover .btn {
    opacity: 1;
    visibility: visible;
}
.portfolio .single-pf .btn:hover {
    color: var(--white-color);
}
.portfolio .owl-nav {
    display: none;
}
/* Slider Nav */
.pf-details .image-slider .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -25px;
}
.pf-details .image-slider .owl-carousel .owl-nav div {
    height: 50px;
    width: 50px;
    line-height: 45px;
    background: var(--white-color);
    color: var(--primary-color);
    position: absolute;
    margin: 0;
    border-radius: 100%;
    font-size: 20px;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    box-shadow: 0px 0px 10px #0000001a;
}
.pf-details .image-slider .owl-carousel .owl-nav div:hover {
    color: var(--white-color);
    background: var(--primary-color);
}
.pf-details .image-slider .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: 20px;
}
.pf-details .image-slider .owl-carousel .owl-controls .owl-nav .owl-next {
    right: 20px;
}
.pf-details .image-slider {
    border-radius: 8px 8px 0 0;
}
.pf-details .image-slider img {
    height: 100%;
    width: 100%;
}
.pf-details .date {
    background: var(--primary-color);
    display: block;
    padding: 20px;
    text-align: center;
    border-radius: 0;
    border: none;
    margin: 0;
    margin-top: -1px;
}
.pf-details .date ul li {
    font-size: 16px;
    color: var(--white-color);
    display: inline-block;
    margin-right: 60px;
}
.pf-details .date ul li:last-child {
    margin: 0;
}
.pf-details .date ul li span {
    font-weight: 500;
    display: inline-block;
    margin-right: 5px;
}
.pf-details .body-text {
}
.pf-details .body-text h3 {
    font-size: 30px;
    font-weight: 600;
    color: #333;
    margin-top: 40px;
}
.pf-details .body-text p {
    margin-top: 20px;
}
.pf-details .body-text .share {
    margin-top: 40px;
}
.pf-details .body-text .share h4 {
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
}
.pf-details .body-text .share ul {
    display: inline-block;
    margin-left: 12px;
}
.pf-details .body-text .share ul li {
    display: inline-block;
    margin-right: 10px;
}
.pf-details .body-text .share ul li:last-child {
    margin-right: 0;
}
.pf-details .body-text .share ul li a {
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #c8c8c8;
    color: #757575;
    display: block;
    border-radius: 50%;
}
.pf-details .body-text .share ul li a:hover {
    color: var(--white-color);
    border-color: transparent;
    background: var(--primary-color);
}
/*==========================
	End Portfolio CSS
============================*/

/*=========================
	Srart service CSS
===========================*/
.services .single-service {
    margin: 30px 0;
    position: relative;
    padding-left: 70px;
}
.services .single-service i {
    font-size: 45px;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.services .single-service h4 {
    text-transform: capitalize;
    margin-bottom: 25px;
    color: #2c2d3f;
}
.services .single-service h4 a {
    color: #2c2d3f;
    font-size: 20px;
    font-weight: 600;
}
.services .single-service h4 a:hover {
    color: var(--primary-color);
}
.services .single-service p {
    color: #868686;
}
/*-- Service Details --*/
.services-details-img {
    margin-bottom: 50px;
}

.services-details-img img {
    width: 100%;
    margin-bottom: 30px;
}
.services-details-img h2 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 16px;
}
.services-details-img P {
    margin-bottom: 20px;
}
.services-details-img blockquote {
    font-size: 15px;
    color: #4a6f8a;
    background-color: var(--primary-color);
    padding: 30px 75px;
    line-height: 26px;
    position: relative;
    margin-bottom: 20px;
    color: var(--white-color);
}
.services-details-img blockquote i {
    position: absolute;
    display: inline-block;
    top: 20px;
    left: 38px;
    font-size: 32px;
}
.service-details-inner-left {
    background-image: url("img/signup-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.service-details-inner-left img {
    display: none;
}
.service-details-inner {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.service-details-inner h2 {
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 15px;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}
.service-details-inner p {
    margin-bottom: 15px;
}
.service-details-inner p:last-child {
    margin-bottom: 0;
}
/*=========================
	End service CSS
===========================*/

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

.blog-section .blog-post {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.blog-section .blog-post-image img, .blog-section .blog-post-image video {
    width: 100%;
    aspect-ratio: 16 / 9; /* Set aspect ratio to 16:9 */
    object-fit: cover;
    border-radius: 5px;
}

.blog-section .blog-post-content {
    padding: 20px;
}

.blog-section .blog-post-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000a95;
}

.blog-section .blog-post-date {
    font-size: 16px;
    color: #888;
    margin-bottom: 10px;
}

.blog-section .blog-post-description {
    font-size: 1rem;
    color: #555;
    height: 100px;
    overflow: hidden;
    transition: height 0.5s;
}

.blog-section .read-more-btn {
    margin-top: 10px;
}

.blog-section .read-more {
    font-size: 16px;
    color: #000a95;
    text-decoration: none;
    border-bottom: 1px solid #000a95;
    transition: all 0.6s ease;
}

.blog-section .read-more:hover {
    color: #000;
    border-bottom: 1px solid #000;
}

.blog-section .show-less {
    font-size: 16px;
    color: #000a95;
    text-decoration: none;
    display: none;
    border-bottom: 1px solid #000a95;
    transition: all 0.6s ease;
}

.blog-section .show-less:hover {
    color: #000;
    border-bottom: 1px solid #000;
}

.blog-section .show-more-button {
    background-color: #000a95;
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.6s ease;
}

.blog-section .show-more-button:hover {
    background-color: #000;
}
.blog-section .show-more-button {
    display: block;
    margin: 0 auto;
}

.single-blog.bg-custom {
    background-color: #ddd;
    width: 80%;
    border-radius: 20px;
}

.single-blog {
    margin-bottom: 30px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.single-blog img,
.single-blog video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.single-blog .blog-content {
    padding: 30px 40px;
}

.single-blog .blog-content h3 {
    margin-bottom: 10px;
}
.single-blog .blog-content h3 a {
    font-size: 24px;
    font-weight: 600;
    color: #000a95;
}

.single-blog .blog-content p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.single-blog .read-more {
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-blog .read-more:hover {
    color: #000 !important;
}

/* Mobile styles */
@media only screen and (max-width: 768px) {
    .single-blog .blog-content {
        padding: 20px 20px;
    }

    .single-blog .blog-content h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #000a95;
    }

    .single-blog .blog-content p {
        font-size: 16px;
        color: #333;
        margin-bottom: 15px;
    }

    .single-blog .read-more {
        font-size: 16px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
}
/*=============================
	End Blog CSS
===============================*/

/*=============================
	Start Pricing Table CSS
===============================*/
.pricing-table {
    background: #f9f9f9;
    position: relative;
}
.pricing-table .single-table {
    background: var(--white-color);
    border: 1px solid #ddd;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 15px 0;
    padding: 30px;
}
.product-scroll-container {
    height: auto;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
}

.product-scroll-container .row {
    display: flex;
    flex-wrap: nowrap;
}

.product-scroll-container .col-lg-4,
.product-scroll-container .col-md-6,
.product-scroll-container .col-12 {
    flex: 0 0 auto;
}

.pricing-table .afficher-tous:hover {
    color: #000a95;
    animation: 0.6s ease;
}

.pricing-table .single-table {
    border-radius: 10px 10px 0 0;
}

.pricing-table .single-table .stock-status {
    font-size: 18px;
    color: #333;
    padding: 5px 10px;
    margin-bottom: 12px;
    border-radius: 10px;
    background-color: #f7f7f7;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.pricing-table .single-table .stock-status.in-stock {
    background-color: #c6f7d0; /* greenish background for in-stock products */
    color: #2f7d2f; /* dark green text for in-stock products */
}

.pricing-table .single-table .stock-status.out-of-stock {
    background-color: #f7cac9; /* reddish background for out-of-stock products */
    color: #e74c3c; /* dark red text for out-of-stock products */
}

.pricing-table .single-table img:hover {
    opacity: 0.7;
    animation: 0.8s ease-in-out;
}

.pricing-table .title-container {
    background-color: #000a95;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    transform: translateY(-20%);
}

.pricing-table .title-container .btns {
    margin-top: 16px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.title-container .btns button {
    width: 45%;
    padding: 10px;
}

.title-container .btns .btn-commande {
    background: #2f7d2f !important;
}

.title-container .btns button a {
    font-size: 15px;
}

.pricing-table .title-container .btn:hover {
    color: #fff !important;
}
/* Table Head */
.pricing-table .single-table .table-head {
    text-align: center;
}
.pricing-table .single-table .img-container {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Optional: ensures that any overflow from the image is hidden */
}
.pricing-table .single-table .img-container img {
    max-height: 100%; /* Ensures that the image fits within the container height */
    width: auto; /* Maintain aspect ratio */
}

.pricing-table .single-table .carousel-control-prev-icon,
.pricing-table .single-table .carousel-control-next-icon {
    background-color: var(--primary-color); /* Customize control icons color */
    border-radius: 50%;
    width: 30px; /* Set the width of the control icons */
    height: 30px; /* Set the height of the control icons */
    background-size: 50%; /* Scale the icon size */
}

/* ___________________________________________________________ */
.pricing-table .single-table .amount {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
}
.pricing-table .single-table .amount span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #868686;
    margin-left: 8px;
}
/* Table List */
.pricing-table .single-table .table-list {
    padding: 10px 0;
    text-align: left;
    margin-top: 30px;
}
.pricing-table .table-list li {
    position: relative;
    color: #666;
    text-transform: capitalize;
    margin-bottom: 18px;
    padding-right: 32px;
}
.pricing-table .table-list li:last-child {
    margin-bottom: 0px;
}
.pricing-table .table-list li.cross i {
    background: #aaaaaa;
}
.pricing-table .table-list i {
    font-size: 7px;
    text-align: center;
    margin-right: 10px;
    position: absolute;
    right: 0;
    height: 16px;
    width: 16px;
    line-height: 16px;
    text-align: center;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 100%;
    padding-left: 1px;
}

/* Table Bottom */
.pricing-table .table-bottom {
    margin-top: 25px;
}
.pricing-table .btn {
    padding: 12px 25px;
    width: 100%;
    color: var(--white-color);
}
.pricing-table .btn:before {
    background: #2c2d3f;
}
.pricing-table .btn:hover {
    color: var(--white-color);
}
.pricing-table .btn i {
    font-size: 16px;
    margin-right: 10px;
}
/*=============================
	End Pricing Table CSS
===============================*/

/*========================
	Start Product Details CSS
==========================*/
.produit-detail #main-image {
    width: 600px;
    height: 500px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 10px;
    border: #000a95 1px solid;
    opacity: 0; /* initial opacity */
    transition: opacity 0.5s; /* transition effect */
}

.produit-detail #main-image.loaded {
    opacity: 1;
}

.produit-detail .thumbnail {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    border: #000a95 1px solid;
    margin: 10px;
    padding: 6px;
    transition: transform 0.3s;
}

.produit-detail .thumbnail:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.produit-detail .thumbnail img {
    display: block;
    margin: 0 auto; /* center the image */
}
/*========================
	End Product Details CSS
==========================*/

/*========================
	Start Clients CSS
==========================*/
.clients {
    background-image: url("img/client-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 100px 0px;
    position: relative;
}
.clients .single-clients img {
    width: 100%;
    cursor: pointer;
    text-align: center;
    float: none;
    padding: 0 25px;
}
/*========================
	End Clients CSS
==========================*/

/*=========================
   Start Contact Us CSS
===========================*/
.contact-us .inner {
    box-shadow: 0px 0px 10px #00000024;
    border-radius: 5px;
    overflow: hidden;
}
.contact-us .contact-us-left {
    width: 100%;
    height: 100%;
}
.contact-us .contact-us-form {
    padding: 50px 40px;
}
.contact-us .contact-us-form h2 {
    position: relative;
    font-size: 32px;
    color: #333;
    font-weight: 600;
    line-height: 27px;
    text-transform: capitalize;
    margin-bottom: 12px;
    padding-bottom: 20px;
    text-align: left;
}
.contact-us .contact-us-form h2:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: var(--primary-color);
}
.contact-us .contact-us-form p {
    font-size: 14px;
    color: #333;
    font-weight: 400;
    text-align: left;
    margin-bottom: 50px;
}
.contact-us .form {
    margin-top: 30px;
}
.contact-us .form .form-group {
    margin-bottom: 22px;
}
.contact-us .form .form-group input {
    width: 100%;
    height: 50px;
    border: 1px solid #eee;
    text-transform: capitalize;
    padding: 0px 18px;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
}
.contact-us .form .form-group textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #eee;
    text-transform: capitalize;
    padding: 18px;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
}
.contact-us .form .form-group textarea.commande-message {
    height: 230px;
}
.contact-us .form .form-group.login-btn {
    margin: 0;
}
.contact-us .form button {
    border: none;
}
.contact-us .form .btn {
    display: inline-block;
    margin-right: 10px;
    color: var(--white-color);
    line-height: 20px;
    width: 100%;
}
.contact-us .form .btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.contact-us .contact-us-form .checkbox {
    text-align: left;
    margin: 0;
    margin-top: 20px;
    display: inline-block;
}
.contact-us .contact-us-form .checkbox label {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    position: relative;
    padding-left: 20px;
}
.contact-us .contact-us-form .checkbox label:hover {
    cursor: pointer;
}
.contact-us .contact-us-form .checkbox label input {
    display: none;
}
.contact-us .contact-us-form .checkbox label::before {
    position: absolute;
    content: "";
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    border: 1px solid var(--primary-color);
    border-radius: 100%;
}
.contact-us .contact-us-form .checkbox label::after {
    position: relative;
    content: "";
    width: 7px;
    height: 7px;
    left: -16px;
    top: -15px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: block;
    font-size: 9px;
    background: var(--primary-color);
    border-radius: 100%;
}
.contact-us .contact-us-form .checkbox label.checked::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.contact-us .contact-info {
    margin-top: 50px;
}
.contact-us .single-info {
    background: var(--primary-color);
    padding: 40px 60px;
    height: 150px;
    border-radius: 10px;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.contact-us .single-info:before {
    position: absolute;
    z-index: -1;
    content: "";
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80%;
    height: 90%;
    background: var(--primary-color);
    opacity: 0;
    filter: blur(10px);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.contact-us .single-info:hover:before {
    opacity: 0.8;
}
.contact-us .single-info:hover {
    transform: translateY(-5px);
}
.contact-us .single-info i {
    font-size: 42px;
    color: var(--white-color);
    position: absolute;
    left: 40px;
}
.contact-us .single-info .content {
    margin-left: 45px;
}
.contact-us .single-info .content h3 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
}
.contact-us .single-info .content p {
    color: var(--white-color);
    margin-top: 5px;
}
/* Google Map */
.contact-us #myMap {
    height: 100%;
    width: 100%;
}
/*=========================
   End Contact Us CSS
===========================*/

/*========================
	Start Error 404 CSS
==========================*/
.error-page {
    text-align: center;
    background: var(--white-color);
    border-top: 1px solid #eee;
}
.error-page .error-inner {
    display: inline-block;
}
.error-page .error-inner h1 {
    font-size: 140px;
    text-shadow: 3px 5px 2px #3333;
    color: var(--primary-color);
    font-weight: 700;
}
.error-page .error-inner h1 span {
    display: block;
    font-size: 25px;
    color: #333;
    font-weight: 600;
    text-shadow: none;
}
.error-page .error-inner p {
    padding: 20px 15px;
}
.error-page .search-form {
    width: 100%;
    position: relative;
}
.error-page .search-form input {
    width: 400px;
    height: 50px;
    padding: 0px 78px 0 30px;
    border: none;
    background: #f6f6f6;
    border-radius: 5px;
    display: inline-block;
    margin-right: 10px;
    font-weight: 400;
    font-size: 14px;
}
.error-page .search-form input:hover {
    padding-left: 35px;
}
.error-page .search-form .btn {
    width: 80px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    background: var(--primary-color);
    display: inline-block;
    position: relative;
    top: -2px;
}
.error-page .search-form .btn i {
    font-size: 16px;
}
/*========================
	End Error 404 CSS
==========================*/

/*===========================
	Start Mail Success CSS
=============================*/
.mail-seccess {
    text-align: center;
    background: var(--white-color);
    border-top: 1px solid #eee;
}
.mail-seccess .success-inner {
    display: inline-block;
}
.mail-seccess .success-inner h1 {
    font-size: 100px;
    text-shadow: 3px 5px 2px #3333;
    color: var(--primary-color);
    font-weight: 700;
}
.mail-seccess .success-inner h1 span {
    display: block;
    font-size: 25px;
    color: #333;
    font-weight: 600;
    text-shadow: none;
    margin-top: 20px;
}
.mail-seccess .success-inner p {
    padding: 20px 15px;
}
.mail-seccess .success-inner .btn {
    color: var(--white-color);
}
/*===========================
	End Mail Success CSS
=============================*/

/*=========================
	Start About Us CSS
===========================*/
.about-area {
    position: relative;
    z-index: 1;
}
.about-image {
    width: 100%;
    height: 100%;
    background-image: url(img/about-img.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.about-image img {
    display: none;
}
.about-content {
    max-width: 555px;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 50px;
}
.about-content span {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 17px;
}
.about-content h2 {
    margin-bottom: 0;
    line-height: 1.3;
    font-size: 40px;
    font-weight: 600;
}
.about-content p {
    margin-top: 10px;
    margin-bottom: 0;
}
.about-content ul {
    padding-left: 0;
    list-style-type: none;
    margin-top: 25px;
    margin-bottom: 0;
}
.about-content ul li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 34px;
}
.about-content ul li i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 100%;
    background-color: var(--primary-color) 2b;
    color: var(--primary-color);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: inline-block;
    font-size: 11px;
    position: absolute;
    left: 0;
    top: -2px;
}
.about-content ul li:hover i {
    background-color: var(--primary-color);
    color: var(--white-color) fff;
}
.about-content ul li:last-child {
    margin-bottom: 0;
}
.about-content .btn {
    margin-top: 30px;
}
/* Start Our Vision Area CSS */
.our-vision-area {
    position: relative;
    z-index: 1;
    padding-bottom: 70px;
}
.single-vision-box {
    margin-bottom: 30px;
    background-color: var(--white-color) fff;
    -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
    box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
    padding: 25px 20px;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    overflow: hidden;
}
.single-vision-box .icon {
    margin-bottom: 20px;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 100%;
    background-color: var(--primary-color);
    color: var(--white-color) fff;
    font-size: 25px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-vision-box h3 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 0;
    position: relative;
    font-size: 20px;
    font-weight: 700;
}
.single-vision-box p {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 12px;
    margin-bottom: 0;
}
.single-vision-box::before {
    width: 0;
    height: 100%;
    z-index: -1;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-vision-box::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border: 10px solid var(--white-color) fff;
    left: -80px;
    bottom: -80px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.15;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-vision-box:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}
.single-vision-box:hover::before {
    width: 100%;
}
.single-vision-box:hover .icon {
    background-color: var(--white-color);
    color: var(--primary-color);
}
.single-vision-box:hover h3 {
    color: var(--white-color) fff;
}
.single-vision-box:hover p {
    color: var(--white-color) fff;
}
.single-vision-box:hover::after {
    left: -50px;
    bottom: -50px;
}
/* End Our Vision CSS */

/* Our Mission Area CSS */
.our-mission-area {
    position: relative;
    z-index: 1;
}
.our-mission-image {
    width: 100%;
    height: 100%;
    background-image: url(img/mission-img.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.our-mission-image img {
    display: none;
}
.our-mission-content {
    max-width: 555px;
    margin-left: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 50px;
}
.our-mission-content .sub-title {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 17px;
}
.our-mission-content h2 {
    margin-bottom: 0;
    line-height: 1.3;
    font-size: 40px;
    font-weight: 600;
}
.our-mission-content p {
    margin-top: 10px;
    margin-bottom: 0;
}
.our-mission-content ul {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    list-style-type: none;
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 0;
    margin-top: 0;
}
.our-mission-content ul li {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    color: #7d7d7d;
    font-size: 14.5px;
    line-height: 1.7;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 25px;
}
.our-mission-content ul li .icon {
    margin-bottom: 13px;
    -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.3);
    box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.3);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.our-mission-content ul li span {
    display: block;
    color: #121521;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 17px;
}
.our-mission-content ul li:hover .icon {
    background-color: var(--primary-color);
    color: var(--white-color) fff;
    border-radius: 100%;
}
/* End Our Mission CSS */

/*=========================
	End About Us CSS
===========================*/

/*=========================
	Start Footer CSS
===========================*/
.footer {
    position: relative;
}
.footer .footer-top {
    padding: 100px 0px;
    position: relative;
    background: var(--primary-color);
}
.footer .footer-top:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.1;
}
.footer .single-footer .social {
    margin-top: 25px;
}
.footer .single-footer .social li {
    display: inline-block;
    margin-right: 10px;
}
.footer .single-footer .social li:last-child {
    margin-right: 0px;
}
.footer .single-footer .social li a {
    height: 38px;
    width: 38px;
    line-height: 34px;
    text-align: center;
    border: 1px solid var(--white-color);
    border-radius: 100%;
    display: block;
}
.footer .single-footer .social li a:hover {
    background: var(--white-color);
    border-color: transparent;
}
.footer .single-footer li a img {
    width: 22px;
    height: 22px;
    border-radius: 30%;
}
.footer .single-footer.f-link li a i {
    margin-right: 10px;
}
.footer .single-footer.f-link li {
    display: block;
    margin-bottom: 12px;
}
.footer .single-footer.f-link li:last-child {
    margin: 0;
}
.footer .single-footer.f-link li a {
    display: block;
    color: var(--white-color);
    text-transform: capitalize;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-weight: 400;
}
.footer .single-footer.f-link li a:hover {
    padding-left: 8px;
}
.footer .single-footer h2 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 40px;
    padding-bottom: 20px;
    text-transform: capitalize;
    position: relative;
}
.footer .single-footer h2::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0px;
    height: 3px;
    width: 50px;
    background: var(--white-color);
}
.footer .single-footer .time-sidual {
    margin-top: 15px;
}
.footer .single-footer .time-sidual {
    overflow: hidden;
}
.footer .single-footer .time-sidual li {
    display: block;
    color: var(--white-color);
    width: 100%;
    margin-bottom: 5px;
}
.footer .single-footer .time-sidual li span {
    display: inline-block;
    float: right;
}
.footer .single-footer .day-head .time {
    font-weight: 400;
    float: right;
}
.footer .single-footer p {
    color: var(--white-color);
}
.footer .copyright {
    background: var(--primary-color);
    padding: 25px 0px 25px 0px;
    text-align: center;
}
.footer .copyright .copyright-content p {
    color: var(--white-color);
}
.footer .copyright .copyright-content p a {
    color: var(--white-color);
    font-weight: 400;
    text-decoration: underline;
    display: inline-block;
    margin-left: 4px;
}
/*=========================
	End Footer CSS
===========================*/
