@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Radio+Canada+Big:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --primary-color: #B93743;
    --secondry-color: #13384A;

    --title-font: "Radio Canada Big", serif;

    --text-black: #000;
    --text-main-color: #B93743;
    --title-color: #13384A;
    --text-white: #ffff;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    overflow-x: hidden;
}

ul,
li,
ol,
p {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}


textarea {
    resize: vertical;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

button {
    border: none;
    outline: none;
}

.btn {
    padding: 8px 30px;
    background: var(--primary-color);
    color: var(--text-white);
    transition: all 0.4s ease;
}

.btn:hover {
    background: var(--secondry-color);
    color: var(--text-white);
}

img {
    width: 100%;
}


/* --------------------------------------------------
            Bootstrap css
----------------------------------------------------*/
.form-control {
    min-height: 50px;
    border-radius: 10px;
    border-color: #dddd;
    background: #f8f8f8;
    transition: 0.4s ease-in-out;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: none;
    box-shadow: none;
}

.form-select {
    min-height: 50px;
    border-radius: 0;
    transition: 0.4s ease-in-out;
    font-size: 14px;
}

.form-select:focus {
    box-shadow: none;
    border-color: var(--bg-dark);
}

.form-label {
    font-size: 18px;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
    border-radius: 3px;
}

.form-group {
    margin: 0 0 30px 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

/* ------------------------------------------
                Preloaer
--------------------------------------------*/
#preloader {
    width: 100%;
    height: 100vh;
    background: #FCFEFC;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
    overflow-x: hidden;
    position: fixed;
    z-index: 99999999;
}

.loader_gif img {
    width: auto;
}

/* --------------------------------------------
                Bottom to top
-------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 25px;
    bottom: 25px;
    z-index: 99999;
    background: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 40px;
    transition: all 0.4s;
}

.back-to-top:hover {
    background: var(--secondry-color);
}

.back-to-top i {
    font-size: 20px;
    color: #fff;
    line-height: 0;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* -----------------------------------------
            1. Header
--------------------------------------------*/
.top_bar {
    background: var(--secondry-color);
    padding: 10px 0;
}

.topbar_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar_content .contact span {
    color: var(--text-white);
}

.topbar_content .social_media a {
    color: var(--text-white);
    padding: 0 5px;
}

.topbar_content .social_media a:last-child {
    padding: 0;
}

header {
    padding: 28px 0;
}

.header_area {
    z-index: 99999;
    position: relative;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo img {
    width: 260px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navigation li a {
    text-transform: uppercase;
    color: var(--text-black);
    font-size: 18px;
    /* font-weight: 500; */
}

.navigation li a.active {
    color: var(--primary-color);
    font-weight: 500;
}

.hamburger,
.close_btn {
    display: none;
}

.hamburger span {
    font-size: 30px;
}

/* .header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
} */

.header_sticky.header-scrolled {
    background: #fff;
    /* padding: 15px 0; */
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: sticky;
    top: 0;
    z-index: 99999;
}

/* -----------------------------------------
            2. Slider
--------------------------------------------*/

.slider_area {
    z-index: -1;
    position: relative;
}

.creative-fullpage--slider {
    background-color: #ffffff;
    z-index: 2;
    width: 100%;
    position: relative;
    flex-direction: column;
    height: 100%;
    font-size: 16px;
    display: flex;
    clip-path: none !important;
}

.creative-fullpage--slider .slider-inner {
    background: #000;
    height: 100%;
    position: relative;
}

.creative-fullpage--slider .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: left;
    flex-direction: column;
    overflow: hidden;
}

.creative-fullpage--slider .swiper-slide .slider-inner img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.creative-fullpage--slider .swiper-slide .slider-inner video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
    position: absolute;
    top: 22%;
    left: 100px;
    z-index: 1;
}

.creative-fullpage--slider .swiper-slide .slider-inner::after {
    content: "";
    position: absolute;
    width: 101%;
    height: 100%;
    top: 0;
    left: -1px;
    background-color: transparent;
    background-image: radial-gradient(at center right, #FFFFFF00 50%, #00000096 100%);
}

.swiper-slide .slider-inner .swiper-content .title-area .tag {
    color: #ffffff;
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 0px;
}

.title-area {
    width: 50%;
    margin: 0 0 30px 0;
}

.swiper-slide .slider-inner .swiper-content .title-area .title {
    margin-top: 50px;
    color: #fff;
    font-size: 80px;
    font-family: "Inter", sans-serif;
    font-weight: 900;
    line-height: 100px;
    text-transform: uppercase;
    margin-bottom: 50px;
    /* margin-left: -12px; */
    text-decoration: none;
}

.swiper-slide .slider-inner .swiper-content p.disc {
    font-size: 20px;
    width: 100%;
    margin-top: 15px;
    margin: 20px 0px 40px 0px;
    font-weight: 400;
    line-height: 32px;
    color: #FFFFFFB0;
}

.creative-btn--wrap .creative-slide--btn {
    color: #ffffff;
    margin-left: 18px;
    font-size: 1.4em;
    transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
    font-weight: 400;
    display: inline-flex;
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    outline: none;
    outline-color: transparent;
    box-shadow: none;
    will-change: transform;
    backface-visibility: hidden;
}

.creative-btn--circle .circle {
    position: absolute;
    right: calc(100% - 10px);
    top: 0;
    bottom: 0;
    margin: auto;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    clip-path: circle(25% at 50% 50%);
    transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle .circle-fill {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 100%;
    background-color: #ffffff;
    will-change: transform;
    transform: scale(0);
    z-index: 1;
    transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1), background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle-icon {
    transform: translate(-100%, 0%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 2;
    transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle-icon .icon-arrow {
    width: 20px;
    height: 20px;
    stroke: none;
    fill: #000;
}

.creative-btn--circle .circle-outline {
    fill: transparent;
    width: 10px;
    stroke: #ffffff;
}

.creative-btn--wrap .creative-slide--btn .creative-btn--label {
    margin-left: 4pt;
    transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn .creative-btn--label .creative-btn__text {
    text-transform: uppercase;
}

.creative-btn--wrap .creative-slide--btn .creative-btn__border {
    position: absolute;
    left: 4pt;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform-origin: right;
    transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {
    transform: translateX(18px);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {
    transform: scale(0, 1);
}

.creative-btn--wrap .creative-slide--btn:hover {
    margin-left: 38px !important;
}

.creative-btn--wrap .creative-slide--btn:hover .circle {
    clip-path: circle(50% at 50% 50%);
}

.creative-btn--wrap .creative-slide--btn:hover .circle-fill {
    transform: scale(1, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .circle-icon {
    transform: translate(0%, 0%);
    opacity: 1;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-next,
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    bottom: 5%;
    top: unset;
    transform: scale(1);
    transition: all 0.4s;
    background-color: #FFFFFF00;
    backdrop-filter: blur(20px);
    height: 85px;
    width: 85px;
    line-height: 85px;
    border-radius: 50%;
    transition: all 0.4s;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-next {
    right: 50px;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    left: 50px;
}

.swiper-container-h .slider-pagination-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: unset;
    right: unset;
    bottom: 80px;
    left: 50% !important;
    transform: translateX(-50%);
    width: 500px;
    z-index: 1;
}

.swiper-container-h .slider-pagination-area .slide-range {
    font-size: 16px;
    font-weight: 500;
    margin: 0 15px;
    color: #ffffff;
    line-height: 0;
    position: absolute;
    font-size: 20px;
}

.swiper-container-h .slider-pagination-area .slide-range.one {
    left: -50px;
}

.swiper-container-h .slider-pagination-area .slide-range.three {
    right: -50px;
}

.swiper-container-h .slider-pagination-area .swiper-pagination {
    bottom: 0 !important;
    width: 500px !important;
}

.swiper-container-h .slider-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
    background: #ffffff;
}

.swiper-container-h .swiper-button-next::after {
    content: "\f061";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    background: none;
    color: #ffffff;
    font-size: 60px;
}

.swiper-container-h .swiper-button-prev::after {
    content: "\f060";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    background: none;
    color: #ffffff;
    font-size: 60px;
}

.swiper-container-h .swiper-button-next:hover,
.swiper-container-h .swiper-button-prev:hover {
    background: #FFFFFF0D;
}



/* -----------------------------------------------------
            3. Service area
---------------------------------------------------------*/
.feature_area {
    /* padding: 60px 0; */
    border-bottom: 1px solid #ddd;
}

.feature_area .service_box .title {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 0 10px 0;
}

.feature_area .service_box .title h5 {
    font-weight: 600;
}

.feature_area .service_box .description p {
    font-weight: 400;
    color: #969696;
    padding: 0 40px 0 0;
    font-size: 14px;
}

.feature_area .service_box {
    border-right: 1px solid #ddd;
    padding: 20px 0;
}

.feature_area .service_box:last-child {
    border: none;
}

.service_2 {
    margin-left: 20px;
}

/* -----------------------------------------------------
            4. About Us
---------------------------------------------------------*/
.section {
    margin: 70px 0 0 0;
}


.about_ara {
    position: initial;
}

/* .about_ara .about_img {
    position: absolute;
    right: -10px;
}

.about_ara .about_img img {
    transform: rotate(180deg);
} */

/* .about_text {
    padding-left: calc((100% - 1320px) / 2);
}

.more_padding {
    padding-left: 280px;
} */

.about_text h6 {
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 24px;
    padding: 0 0 8px 0;
}

.about_text h4 {
    font-weight: 700;
    font-family: var(--title-font);
    font-size: 32px;
    padding: 0 0 20px 0;
}

.about_text .desc p {
    font-size: 16px;
    color: #777;
    line-height: 26px;
    padding: 0 0 16px 0;
}

.about_text .points .about_point {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0 0 30px 0;
}

.about_text .points .about_point ul {
    padding-left: 27px;
}

.about_text .points .about_point ul li {
    list-style-type: disc;
}

.about_text .points .about_point ul li::marker {
    color: var(--primary-color);
    font-size: 27px;
}

.about_btn a {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px 15px;
    transition: 0.4s ease all;
}

.about_btn a span {
    padding-left: 10px;
}

.about_btn a:hover {
    background: var(--secondry-color);
    color: var(--text-white);
}

/* -----------------------------------------------------
            5. Service area
---------------------------------------------------------*/

.section_title {
    text-align: center;
    margin: 0 0 30px 0;
}

.section_title h5 {
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 0 0 5px 0;
    font-size: 22px;
}

.section_title h3 {
    font-size: 32px;
    font-family: var(--title-font);
    color: var(--secondry-color);
    font-weight: 700;
}

.service_area .service_list {
    border: 1px solid #ddd;
    padding: 18px;
    border-radius: 10px;
    height: 100%;
}

.service_area .service_list .service_img img {
    width: 100%;
    border-radius: 8px;
    margin: 0 0 15px 0;
    min-height: 276px;
}

.service_area .service_list .title h4 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 600;
    font-size: 28px;
    padding: 0 0 8px 0;
}

.service_area .service_list .desc p {
    font-size: 14px;
    color: #777;
    margin: 0 0 25px 0;
}

.service_area .service_list .service_btn a {
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 0 20px 20px 0;
    padding: 7px 15px;
    text-transform: uppercase;
    font-size: 16px;
    transition: .4s all ease;
}

.service_area .service_list .service_btn a span {
    padding-left: 10px;
}

.service_area .service_list .service_btn a:hover {
    background: var(--secondry-color);
}

/* -----------------------------------------------------
            6. Container info
---------------------------------------------------------*/
.info_area {
    background: var(--secondry-color);
    padding: 50px 0;
}

.container_img img {
    width: 100%;
}

.information_list .information {
    margin: 0 0 60px 0;
}

.information_list .information:last-child {
    margin: 0;
}

.information_list .information .icon {
    padding: 0 0 10px 0;
}


.information_list .information .icon img {
    width: auto;
}

.information_list .information .title {
    color: var(--text-white);
    font-size: 20px;
    font-weight: 500;
    padding: 0 0 3px 0;
}

.information_list .information .desc p {
    color: #B6CFD6;
    font-size: 15px;
    font-weight: 400;
}

.small_pad {
    padding-left: 50px;
}


/* -----------------------------------------------------
            7. brand Slider
---------------------------------------------------------*/
.brand_area {
    background: var(--primary-color);
    padding: 30px 0;
}

.brand_logo {
    display: inline-block;
    vertical-align: middle;
}

.brand_logo img {
    width: 100%;
}

/* -----------------------------------------------------
            8. Counter
---------------------------------------------------------*/

.countdown_area {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

.countdown_item {
    text-align: center;
    padding: 30px 0;
    border-right: 1px solid #ddd;
}

.countdown_item:last-child {
    border: none;
}

.countdown_item .countdown_title {
    font-size: 18px;
    font-weight: 500;
}

.countdown_item .counter,
.countdown_item .count_down span {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 60px;
    font-weight: 600;
    line-height: normal;
}

.countdown_item .count_down {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* -----------------------------------------------------
            10. Our Projects
---------------------------------------------------------*/
.project_list {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.project_list:hover::before {

    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.project_list::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    bottom: -150px;
    transform-origin: bottom;
    -webkit-transform: translateY(100%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: linear-gradient(180deg, rgba(236, 57, 0, 0) 0%, #13384A 100%);
}

.project_list:hover .project_details {
    opacity: 1;
}

.project_details {
    position: absolute;
    left: 20px;
    bottom: 20px;
    margin: 0 auto;
    max-width: 85%;
    z-index: 9999;
    opacity: 0;
    transition: all 500ms ease;
}

.project_details .category {
    opacity: 0;
    visibility: hidden;
    margin-bottom: 10px;
    display: inline-block;
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project_details .category a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 100px;
    display: inline-block;
    background-color: var(--primary-color);
}

.project_list:hover .project_details .category {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}

.project_details .project_title {
    opacity: 0;
    visibility: hidden;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    padding-bottom: 20px;
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project_details .project_title a {
    width: 100%;
    color: var(--text-white);
    display: inline !important;
    font-family: var(--title-font);
    background-position-y: -1px;
    background-repeat: no-repeat;
    background-size: 0 100%;
    backface-visibility: hidden;
    padding-bottom: 4px;
    -webkit-backface-visibility: hidden;
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 2px);
    -webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.project_list:hover .project_details .project_title {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}


/* ----------------------------------------------------------
                Qutes
-------------------------------------------------------------*/
.qutes_area {
    background: url(../image/quotes_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    background-attachment: fixed;
}

.qutes_content {
    padding: 100px 0;
}

.qutes_content .qutes_icon {
    padding: 0 0 20px 0;
}

.qutes_content .qutes_icon i {
    color: var(--text-white);
    font-size: 100px;
}

.qutes_content .qutes h4 {
    color: var(--text-white);
    font-family: var(--title-font);
    font-size: 30px;
}

/* -----------------------------------------------------
            11. Testimonial
---------------------------------------------------------*/

.testimonial_slider {
    position: relative;
}

.client_review {
    text-align: center;
    max-width: 85%;
    margin: 0 auto;
}

.client_review .icon {
    margin: 0 0 15px 0;
}

.client_review .review_text {
    padding: 0 0 20px 0;
}

.client_review .client_info {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.client_review .client_info .image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.client_review .client_info .client_detail {
    text-align: left;
}

.client_review .client_info .client_detail h3 {
    color: var(--text-main-color);
    padding: 0 0 5px 0;
    font-size: 24px;
}

.owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -100px
}

.owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -100px;
}

.owl-nav .owl-prev span,
.owl-nav .owl-next span {
    display: none;
}

.owl-nav .owl-prev::before {
    content: '\f104';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 30px;
    display: inline-block;
}

.owl-nav .owl-next::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 30px;
    display: inline-block;
}


/* -----------------------------------------------------
            12. Company Details
---------------------------------------------------------*/
.company_stage .company_details {
    position: relative;
    z-index: 1;

}

.company_stage .company_details::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #ECECEC;
    -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 30% 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 30% 100%);
    z-index: -1;
}

.company_img {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.company_img .image img {
    width: 100%;
    height: 19vw;
    object-fit: cover;
}

.height-100 {
    height: 100px;
}

.company_stage .company_details .container-fluid {
    padding-right: calc((100% - 1320px) / 2);
}

.company_stage .company_details .company_info .company_title h2 {
    font-family: var(--title-font);
    font-weight: 800;
    font-size: 36px;
    margin: 0 0 30px 0;
}

.company_stage .company_details .company_info .compnay_Desc p {
    color: #777;
}

.company_stage .company_details .company_info .company_feature {
    margin: 70px 0;
}

.company_feature .feature_content .feature_content_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company_feature .feature_content .feature_content_item:first-child {
    margin: 0 0 60px 0;
}

.company_feature .feature_content .feature_content_item .feature_title h5 {
    font-family: var(--title-font);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;

}

.company_feature .feature_content .feature_content_item .feature_title h2 {
    font-family: var(--title-font);
    font-size: 55px;
    font-weight: 700;
    font-style: normal;
    line-height: 120%;
    color: var(--text-white);
    opacity: 0.2;
    transition: all 0.4s ease;
    text-shadow: -1px -1px 0 #004041, 0px -1px 0 #004041, 1px -1px 0 #004041, 1px 0px 0 #004041, 1px 1px 0 #004041, 0px 1px 0 #004041, -1px 1px 0 #004041, -1px 0 0 #004041;

}

.company_feature .feature_content .feature_content_item .feature_title h2:hover {
    opacity: 1;
}

.company_feature .feature_content .feature_content_item .feature_Desc {
    max-width: 450px;
    border-bottom: 1px solid #ECECEC;
}

.company_feature .feature_content .feature_content_item .feature_Desc p {
    margin-bottom: 16px;
}

/* -----------------------------------------------------
            13. Footer
---------------------------------------------------------*/
.footer_area {
    background: var(--secondry-color);
    padding: 100px 0 0 0;
    position: relative;
    background-image: url(../image/footer_shap.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;

}

.footer_area .footer_details .footer_content {
    margin: 0 0 40px 0;
}

.footer_area .footer_details .footer_content h4 {
    color: var(--text-white);
    font-size: 18px;
}

.footer_area .footer_details .footer_content h3 {
    font-family: var(--title-font);
    font-weight: 500;
    color: var(--text-white);
    padding: 0 0 10px 0;
    font-size: 22px;
}

.footer_area .footer_details .footer_content h6 {
    color: #f8f8f8;
    font-family: var(--title-font);
    font-weight: 400;
    padding-right: 30%;
}

.footer_area .footer_details .footer_content ul li {
    padding: 0 0 15px 0;
}

.footer_area .footer_details .footer_content ul li a {
    color: var(--text-white);
}


.footer_area .footer_details .footer_content .footer_input {
    margin: 40px 0 0 0;
    position: relative;
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_input input {
    border: none;
    outline: none;
    padding: 5px;
    background: none;
    width: 100%;
    padding: 8px 0;
    color: var(--text-white);
}

.footer_input button {
    background: none;
    color: var(--text-white);
    margin-left: 10px;
}

::placeholder {
    color: var(--text-white);
}

.footer_bottom {
    margin: 60px 0 0 0;
    padding: 0 0 40px 0;
}

.footer_bottom .footer_logo img {
    width: 270px;
}

.footer_bottom .copyright {
    text-align: end;
}

.footer_bottom .copyright p {
    color: var(--text-white);
}


/* -----------------------------------------------------
            14. About Us Page
---------------------------------------------------------*/
.breadcumb_area {
    background-image: url(../image/bread-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.about_breadcumb{
    background-image: url(../image/about_breadcumb.jpg);
}

.tariff_breadcumb{
    background-image: url(../image/tariff_breadcumb.jpg);
}

.service_breadcumb{
    background-image: url(../image/service_breadcumb.jpg);
}

.CFS_breadcumb{
    background-image: url(../image/CFS_breadcumb.jpg);
}

.background_overlay {
    z-index: 1;
    background-color: rgba(19, 56, 74, 0.6);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.breadcumb_area .breadcumb_content {
    padding: 160px 0 160px;
    z-index: 10;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.breadcumb_area .breadcumb_content .breadcumb_title {
    color: var(--text-white);
    font-weight: 600;
    font-size: 45px;
    padding: 0 0 7px 0;
}

.breadcumb_area .breadcumb_content .breadcumb_link ul {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
}

.breadcumb_area .breadcumb_content .breadcumb_link ul li,
.breadcumb_area .breadcumb_content .breadcumb_link ul li a {
    color: var(--text-white);
    text-transform: uppercase;
}


/* ------about us------- */

.about_multi_image {
    position: relative;
}

.about_multi_image .first_img {
    width: 100%;
}

.about_multi_image .second_img {
    position: absolute;
    right: 40px;
    bottom: -100px;
    width: 60%;
    border: 10px solid #ffff;
}

.year_count {
    position: absolute;
    bottom: 15%;
    left: 13%;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 22px;
    border-radius: 5px;
}

.year_count span {
    text-transform: uppercase;
    font-size: 18px;
}


/* ------------ Our team and goals --------------- */
.our_team {
    margin: 10% 0 0 0;
}

.team_section {
    display: flex;
}

.team_section .team_member {
    position: relative;
}

.team_section .team_member img {
    width: 100%;
    cursor: pointer;
}

.team_section .team_member .member_name {
    background: var(--primary-color);
    text-align: center;
    padding: 10px 0;
    position: absolute;
    margin: -40px 0 0 45px;
    border-radius: 50px;
    opacity: 0;
    transition: all ease 0.4s;
    width: 80%;
}

.team_section .team_member:hover .member_name {
    opacity: 1;
}

.team_section .team_member .member_name h3,
.team_section .team_member .member_name h6 {
    color: var(--text-white);
}

.company_goals {
    background: var(--secondry-color);
    margin-top: 150px;
    padding: 60px 0;
}

.company_goals .company_content h3 {
    color: var(--text-white);
    font-family: var(--title-font);
    font-size: 50px;
    padding: 0 0 20px 0;
    font-weight: 600;
}

.company_goals .company_content p {
    color: var(--text-white);
    padding: 0 0 20px 0;
}

.company_goals .company_content .contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.company_goals .company_content .contact .mail_icon {
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.company_goals .company_content .contact .mail_icon i {
    color: var(--text-white);
    font-size: 30px;
}

.company_goals .company_content .contact .main_info h6 {
    color: #d1d1d1;
    padding: 0 0 3px 0;
}

.company_goals .company_content .contact .main_info h5 {
    color: var(--text-white);
}

.company_content_tab {
    margin: 0 0 -150px 0;
}

.company_content_tab .card {
    box-shadow: 0px 0px 90px 0px rgba(19, 19, 19, 0.07);
    border-radius: 40px;
    padding: 70px 65px 55px;
}

.company_content_tab .nav_tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #EEEEEE;
    /* padding: 13px 5px; */
    border-radius: 40px;
}

.company_content_tab .nav_tabs li {
    padding: 0 20px;
    text-transform: uppercase;
    font-weight: 500;
}

.company_content_tab .nav_tabs .active {
    background: var(--primary-color);
    padding: 13px 20px;
    color: var(--text-white);
    border-radius: 40px;
}

.company_content_tab .company_tab .tab-content {
    margin: 20px 0 0 0;
}

.company_content_tab .company_tab .tab-content .tab-pane .content_tab .image img {
    width: 100%;
    border-radius: 10px;
    margin: 0 0 20px 0;
}

.margin_top {
    margin: 200px 0 0 0;
}

/* team */
.gallery_img a img{
    width: 100%;
    height: 350px;
    margin: 0 0 30px 0;
    object-fit: cover;
}

/* -----------------------------------------------------
            15. Contact Us Page
---------------------------------------------------------*/
.company_contact_and_form .contact-info h2 {
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--title-color);
    font-size: 40px;
    padding: 0 0 10px 0;
}

.company_contact_and_form .contact-info p,
.company_contact_and_form .support_contact {
    margin: 0 0 40px 0;
}


.company_contact_and_form .support_contact h6 {
    font-size: 22px;
    font-family: var(--title-font);
    padding: 0 0 10px 0;
}

.company_contact_and_form .support_contact h4 {
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 600;
}

.company_contact_and_form .company_contact_and_form h5 {
    font-family: var(--title-font);
    padding: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
}

.company_contact_and_form .company_contact_and_form h6 {
    padding: 0 0 8px 0;
}


/* -----------------------------------------------------
            16. Service Page
---------------------------------------------------------*/
.service_lists .service-items {
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}

.box-1 {
    border-radius: 200px 0 0 0;
    padding: 45px 45px 45px 100px;
}

.box-2 {
    border-radius: 0 200px 0 0;
    padding: 45px 110px 45px 45px;
}

.box-3 {
    border-radius: 0 0 0 200px;
    padding: 45px 45px 45px 100px;
}

.box-4 {
    border-radius: 0 0 200px 0;
    padding: 45px 110px 45px 45px;
}


.service_lists .service-items .service_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.service_lists .service-items {
    margin: 0 0 30px 0;
}


.service_lists .service-items .service_content .service_text {
    max-width: 300px;
}

.service_lists .service-items .service_content .service_text h4 {
    font-size: 22px;
    padding: 0 0 10px 0;
    font-weight: 600;
}

.service_lists .service-items .service_content .service_text p {
    font-size: 16px;
}

.service_lists .service-items .service_content .service_icon {
    width: 133px;
    height: 133px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service_lists .service-items .service_content .service_icon img {
    width: auto;
}

.bg_pink {
    background-color: #F9E5FE;
}

.bg_blue {
    background-color: #E6FAFF;
}

.bg_green {
    background-color: #E7FFF4;
}

.bg_orange {
    background-color: #FFE6ED;
}


/* ------------ service project --------------- */
.service_project {
    background-image: url(../image/project-bg.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

.service_project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    background-color: rgba(16, 75, 89, 0.8);
}

.service_project .project_title {
    padding: 100px 0 40px 0;
    text-align: center;
    z-index: 10;
    position: relative;
}

.service_project .project_title h5 {
    text-transform: uppercase;
    color: var(--text-white);
    padding: 0 0 10px 0;
    font-family: var(--title-font);
}

.service_project .project_title h3 {
    font-size: 40px;
    font-weight: 600;
    font-family: var(--title-font);
    color: var(--text-white);
}

.service_project .service_project_list {
    display: flex;
    align-items: center;
    z-index: 20;
    position: relative;

}

.service_project .service_project_list .project {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.service_project .service_project_list .project::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    bottom: -150px;
    transform-origin: bottom;
    -webkit-transform: translateY(100%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: linear-gradient(180deg, rgba(236, 57, 0, 0) 0%, #13384A 100%);
}

.service_project .service_project_list .project:hover::before {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.service_project_list .project .project_img img {
    width: 100%;
}


.service_project_list .project .project_details {
    position: absolute;
    left: 20px;
    bottom: 20px;
    margin: 0 auto;
    max-width: 85%;
    z-index: 9999;
    opacity: 0;
    transition: all 500ms ease;
}

.service_project_list .project:hover .project_details {
    opacity: 1;
}

.service_project_list .project .project_details .title {
    opacity: 0;
    visibility: hidden;
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    padding-bottom: 20px;
    -webkit-transform: translateX(25px);
    transform: translateX(25px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service_project_list .project:hover .project_details .title {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}



.service_project_list .project .project_details .title a {
    width: 100%;
    color: var(--text-white);
    display: inline !important;
    font-family: var(--title-font);
    background-position-y: -1px;
    background-repeat: no-repeat;
    background-size: 0 100%;
    backface-visibility: hidden;
    padding-bottom: 4px;
    -webkit-backface-visibility: hidden;
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 2px);
    -webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}


.project_list .project_img img {
    width: 100%;
}


/* -----------------------------------------------------
            17. Project details
---------------------------------------------------------*/
.project_info .project_information h2 {
    font-family: var(--title-font);
    font-weight: 600;
    padding: 0 0 20px 0;
    color: var(--title-color);
}

.project_info .project_information p {
    text-align: justify;
    padding: 0 0 20px 0;
    color: #777;
}

.project_info .project_information .project_image img {
    width: 100%;
    margin: 0 0 20px 0;
}

.project_detail {
    background-color: var(--secondry-color);
    padding: 20px;
    border-radius: 10px;
}

.project_detail h4 {
    text-align: center;
    color: var(--text-white);
    padding: 10px 0 25px 0;
    border-bottom: 1px solid #365665;
}

.project_detail ul li {
    padding: 15px 0;
    border-bottom: 1px solid #365665;
}

.project_detail ul li h5 {
    font-size: 20px;
    color: var(--text-white);
    padding: 0 0 5px 0;
}

.project_detail ul li h6 {
    font-size: 18px;
    color: var(--text-white);
}

.project_detail ul li:last-child {
    border-bottom: none;
    padding: 15px 0 0 0;
}

.project_vision {
    background: #F9F8FF;
    padding: 60px 0;
}


.project_vision .vision_image img {
    width: 100%;
}

.project_vision .vision_content h4 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 600;
    font-size: 45px;
    margin: 0 0 15px 0;
}

.project_vision .vision_content p {
    color: #777;
    line-height: 26px;
    font-size: 18px;
    margin: 0 0 30px 0;
    text-align: justify;
}

.vision_ponits ul li {
    padding: 0 0 20px 0;
    color: #777;
}

.vision_ponits ul li span {
    padding-right: 13px;
}


/* -----------------------------------------------------
            18. Service details
---------------------------------------------------------*/

.service_content .service_title {
    margin: 0 0 30px 0;
}

.service_content .service_title h3 {
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--title-color);
    margin: 0 0 10px 0;
}

.service_details_area .service_content .service_image {
    margin: 0 0 30px 0;
}

.service_content .service_title h5 {
    padding: 0 0 15px 0;
    font-weight: 600;
    font-size: 26px;
    font-family: var(--title-font);
}

.service_content .service_title h6{
    padding: 0 0 15px 0;
    font-weight: 600;
    font-size: 20px;
}

.service_content .service_title p {
    color: #777;
}

.service_content .service_title .serivce_point ul {
    padding-left: 2rem;
}

.service_content .service_title .serivce_point ul li {
    list-style-type: disc;
    padding: 0 0 20px 0;
    text-align: justify;
}

.service_content .service_title .serivce_point ul li span {
    line-height: 26px;
}

.contact_info{
    position: sticky;
    top: 150px;
}

.contact_info .card {
    background: var(--secondry-color);
    color: var(--text-white);
    margin: 0 0 30px 0;
}

.contact_info .Contact_box h5 {
    padding: 0 0 20px 0;
    font-size: 18px;
}

.contact_info .Contact_box .contact_details ul li {
    padding: 0 0 20px 0;
}

.contact_info .Contact_box .contact_details ul li:last-child,
.contact_info .more_service ul li:last-child {
    padding: 0;
}

.contact_info .Contact_box .contact_details ul li span i {
    padding-right: 8px;
}

.contact_info .Contact_box .contact_details ul li h6 {
    padding: 8px 0 0 0;
}

.contact_info .card:last-child{
    background-color: #f7f7f7;
    box-shadow: none;
}


.contact_info .more_service h5{
    color: var(--title-color);
    padding: 0 0 20px 0;
    text-transform: uppercase;
    font-weight: bold;
}

.contact_info .more_service ul li{
    padding: 0 0 15px 0;
}

.contact_info .more_service ul li a{
    color: var(--primary-color);
    font-weight: 600;
    transition: 0.2s ease-in-out all;
}

.contact_info .more_service ul li:hover a{
    padding-left: 5px;
}