/*------------------------------------------------------------------
[Master Stylesheet]

Project:  Blazin
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header
3. Banner Section
4. About Us Section
5. Services Section
6. Statistics Section
7. Our Portfolio Section
8. Who We Are Section
9. Testimonials Section
10. Our Staff Section
11. Client Logo's Section
12. Contact Us Section
13. Footer Section
*/

@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,700&display=swap');

body {
	font-family: 'Poppins', sans-serif !important;
}
:root {
    --e-global-color-primary: #1c1c1c;
    --e-global-color-secondary: #f6a440;
    --e-global-color-text: #000b14;
    --e-global-color-accent: #ed1c24;
	--e-global-color-white: #ffffff;
    --e-global-color-dark-grayish: #fff;
    --e-global-color-strong-red: #005aab;
    --e-global-color-very-dark-gray: #686868;
    --e-global-color-light-gray: #f9f9f9;
    --e-global-color-very-light-gray: #ebebeb;
    --e-global-color-mostly-white: #d2e2f0;
}
h1{
    font-size: 85px;
    line-height: 72px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--e-global-color-white);
}
h2{
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    line-height: 60px;
    font-weight: 400;
}
h3{
    font-family: 'Oswald', sans-serif;
    font-size: 35px;
    line-height: 30px;
    font-weight: 400;
}
h4{
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
}
h5{
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}
h6{
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3.2px;
}
p{
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
}
.text-size-16 {
    font-size: 17px;
    text-align: left;
    line-height: 25px;
    font-weight: 500;
    color: var(--e-global-color-text);
}

.text-size-16_1 {
    font-size: 16px;
    text-align: left;
    line-height: 18px;
    font-weight: 500;
    color: #fff !important;
}
a {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    text-decoration: none !important;
}

a:hover{
    color: #005aab;
}
.hover-effect {
    transition: all 0.3s ease-in-out;
}
.hover-effect:hover {
    transform: translateY(-5px);
}
.default-btn {
    padding: 20px 20px 20px 40px;
    border-radius: 100px;
    text-transform: uppercase;
    border: 1px solid var(--e-global-color-very-dark-gray);
    display: inline-block;
    color: var(--e-global-color-white);
    background: var(--e-global-color-accent);
}
.default-btn:hover {
    background: var(--e-global-color-strong-red);
    border: 1px solid var(--e-global-color-strong-red);
    color: var(--e-global-color-white);
    text-decoration: none;
}
.btn_wrapper i{
    font-family: 'Font Awesome 6 Free';
    font-size: 20px;
    line-height: 20px;
    margin-left: 20px;
}
html{
    scroll-behavior: smooth;
}

/* Home Page Banner Section Style */

.shape img {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-30px); }
}
.shape_2 img {
    -webkit-animation: movers 1s infinite  alternate;
    animation: movers 1s infinite  alternate;
}
@-webkit-keyframes movers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-30px); }
}

/* Home Page About Us Section Style */

.aboutus_section{
    padding: 80px 0;
}
.aboutus_section .heading{
    padding-left: 30px;
}
.aboutus_section .heading .line_wrapper figure{
    bottom: -36px;
    left: 0;
}
.aboutus_section .heading h6{
    color: var(--e-global-color-secondary);
    margin-bottom: 8px;
}
.aboutus_section .heading h2{
    color: var(--e-global-color-primary);
    margin-bottom: 50px;
}
.aboutus_section .heading p{
  /*  padding-right: 35px;*/
    margin-bottom: 20px;
        letter-spacing: .5px;
}
.aboutus_section .heading ul{
    margin-bottom: 35px;
}
.aboutus_section .heading ul li{
    position: relative;
}
.aboutus_section .heading ul li p {
    font-size: 17px;
    line-height: 20px;
   /* font-weight: 600;*/
    color: var(--e-global-color-primary);
    margin-bottom: 12px;
    padding-right: 0;
    padding-left: 32px;
}
.aboutus_section .heading ul li p:hover{
    color: var(--e-global-color-strong-red);
}
.aboutus_section .heading ul li i {
    background-color: var(--e-global-color-strong-red);
    color: var(--e-global-color-white);
    font-size: 14px;
    line-height: 18px;
    display: inline-block;
    border-radius: 100px;
    height: 18px;
    width: 18px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
.aboutus_section .heading .btn_wrapper a {
    border: 1px solid var(--e-global-color-accent);
   padding: 13px 5px 16px 26px;
   font-size: 16px;
}
.aboutus_section .heading .btn_wrapper a:hover {
    border: 1px solid var(--e-global-color-strong-red);
}
.aboutus_section .about_images .about_img{
    z-index: 2;
}
.aboutus_section .about_images .about_img img{
    border-radius: 40px;
}
.aboutus_section .about_images .shape1 {
    top: -40px;
    left: -25px;
    z-index: 1;
}
.aboutus_section .about_images .shape1 img{
    border-radius: 30px;
}
.aboutus_section .about_images .shape2 {
    bottom: 45px;
    left: -20px;
    z-index: 1;
}
.aboutus_section .about_images .aboutus_img_box{
    display: inline-block;
    width: 38%;
    right: 165px;
    bottom: 38px;
    text-align: center;
    z-index: 2;
    border-radius: 20px;
    padding: 30px 20px 20px;
    background-color: var(--e-global-color-white);
    box-shadow: rgb(0, 90, 171) 0px 20px 30px -10px;
    transition: all 0.3s ease-in-out;
}
.aboutus_section .about_images .aboutus_img_box:hover{
    background-color: var(--e-global-color-strong-red);
}
.aboutus_section .about_images .aboutus_img_box figure{
    margin-bottom: 14px;
}
.aboutus_section .about_images .aboutus_img_box figure img{
    transition: all 0.3s ease-in-out;
}
.aboutus_section .about_images .aboutus_img_box figure img:hover{
    transform: scale(1.1);
}
.aboutus_section .about_images .aboutus_img_box:hover figure img{
    filter: brightness(0) invert(1);
}
.aboutus_section .about_images .aboutus_img_box span{
    font-size: 42px;
    line-height: 44px;
    font-weight: 800;
    color: var(--e-global-color-primary);
    transition: all 0.3s ease-in-out;
}
.aboutus_section .about_images .aboutus_img_box:hover .span_wrapper span{
    color: var(--e-global-color-white);
}
.aboutus_section .about_images .aboutus_img_box p{
    transition: all 0.3s ease-in-out;
}
.aboutus_section .about_images .aboutus_img_box:hover p{
    color: var(--e-global-color-white);
}
.aboutus_section .left_shape{
    bottom: -222px;
    left: 0;
}
.aboutus_section .right_shape{
    top: 50%;
    right: 30px;
    z-index: -1;
}

/* Home Page Our Services Section Style */

.our_services_section{
    background-color: var(--e-global-color-mostly-white);
    padding: 130px 10px 135px 405px;
    position: relative;
    z-index: 1;
        overflow: hidden;
}
.our_services_section .services_right_background{
    top: 0;
    right: 0;
    position: absolute;
    opacity: 40%;
}
.our_services_section::before{
    background: url("../images/our_services_left_image.jpg");
    content: "";
    width: 30.5%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 80%;
}
.our_services_section::after{
    content: "";
    width: 30.5%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000000;
    z-index: -1;
}
.our_services_section .image_box::before{
    background: url('../images/our_services_box_image.jpg');
    content: "";
    width: 349px;
    height: 486px;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;     
    opacity: 15%;
    z-index: 1;
}
.our_services_section .image_box::after{
    content: "";
    width: 349px;
    height: 486px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--e-global-color-strong-red);
    border-radius: 30px; 
}
.our_services_section .image_box_content{
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
    padding: 70px 46px;
}
.our_services_section .image_box_content h2{
    margin-bottom: 48px;
}
.our_services_section .image_box_content figure{
    top: 165px;
    left: 46px;
}
.our_services_section .image_box_content p{
    margin-bottom: 20px;
}
.our_services_section .image_box_content .btn_wrapper a{
    padding: 20px 20px 20px 35px;
    border: 1px solid var(--e-global-color-accent);
}
.our_services_section .image_box_content .btn_wrapper a:hover{
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    color: var(--e-global-color-strong-red)
}
.our_services_section .box{
    width: 100%;
    border-radius: 30px;
    padding: 58px 28px;
    background-color: var(--e-global-color-white);
    box-shadow: 0px 19px 54px 0px rgb(0 0 0 / 1%);
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--e-global-color-white);
}
.our_services_section .box figure{
    margin-bottom: 30px;
}
.our_services_section .box figure img{
    transition: all 0.3s ease-in-out;
}
.our_services_section .box figure img:hover{
    transform: translateY(-10px);
}
.our_services_section .box h4{
    padding-right: 25px;
    color: var(--e-global-color-primary);
}
.our_services_section .box p{
    margin-bottom: 24px;
    line-height: 26px;
}
.our_services_section .box .btn_wrapper a{
    font-size: 16px;
    line-height: 16px;
    color: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.our_services_section .box .btn_wrapper i{
    margin-left: 10px;
}
.our_services_section .box:hover{
    border: 1px solid var(--e-global-color-strong-red);
    box-shadow: 0px 19px 54px 0px rgb(181 27 65 / 5%);
}
.our_services_section .box:hover .btn_wrapper a{
    color: var(--e-global-color-strong-red);
}
.our_services_section .box:hover .btn_wrapper a:hover{
    color: var(--e-global-color-accent);
}
.our_services_section .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 30px !important;
    line-height: 0;
    text-align: left;
}
.our_services_section .owl-carousel .owl-dots .owl-dot span {
    background: #d1d1d1;
    width: 13px;
    height: 13px;
    margin: 0 4px;
    transition: all 0.3s ease-in-out;
}
.our_services_section .owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--e-global-color-accent);
}
.our_services_section .owl-carousel .owl-dots .owl-dot.active span {
    background: var(--e-global-color-accent);
}
.our_services_section .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Home Page Our Statictics Section Style */

.our_statistics_section{
    background: -webkit-linear-gradient(358deg, #ed1c24,#005aab,);/* Chrome 10-25, Safari 5.1-6 */                          
    background: linear-gradient(358deg, #ed1c24,#005aab);/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
   padding: 30px 0 30px;
}
.our_statistics_section::before{
    content: "";
    background-image: url('../images/statistics_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 20%;
    background-attachment: fixed;
}
.our_statistics_section .statistics_box{
    border-right: 1px solid var(--e-global-color-very-dark-gray);  
    text-align: center;
}

.span_wrapper {
    margin-bottom: 7px;
        font-family: 'Oswald';
  }

.our_statistics_section .statistics_box figure{
    background-color: var(--e-global-color-strong-red);
    display: inline-block;
    height: 158px;
    width: 158px;
    line-height: 158px;
    border-radius: 100px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}
.our_statistics_section .statistics_box figure img{
    transition: all 0.3s ease-in-out;
}
.our_statistics_section .statistics_box figure img:hover{
    transform: scale(1.1);
}
.our_statistics_section .statistics_box .yellow_circle{
    background-color: var(--e-global-color-accent);
}
.our_statistics_section .statistics_box figure:hover{
    background-color: var(--e-global-color-accent);
}
.our_statistics_section .statistics_box .yellow_circle:hover{
    background-color: var(--e-global-color-strong-red);
}
.our_statistics_section .statistics_box h3{
    margin-bottom: 16px;
}
.our_statistics_section .statistics_box h3:hover{
    color: var(--e-global-color-secondary) !important;
}
.our_statistics_section .statistics_box span{
    font-size: 42px;
    line-height: 30px;
    font-weight: 800;
}
.our_statistics_section .statistics_box .span_wrapper:hover span{
    color: var(--e-global-color-secondary) !important;
}  
.our_statistics_section .statistics_box p{
    color: #fff;
    text-transform: uppercase;
}
.our_statistics_section .triangle_shape{
    right: -50px;
    bottom: 50px;
}
.our_statistics_section .left_shape{
    left: -10px;
    top: 59px;
}
.our_statistics_section .right_shape{
    bottom: -30px;
    right: -28px;
}

/* Home Page Our Portfolio Section Style */

.our_portfolio_section{
    margin-top: 0;
    padding-bottom: 75px;
    padding: 75px 0;
    background-image: url(../images/products-bg.jpg);
    background-size: cover !important;
    background-attachment: fixed;
}
/*.our_portfolio_section:hover{
    background-image: url(../images/products-bg_1.jpg);
}*/
.our_portfolio_section .heading{
    margin-bottom: 65px;
}
.our_portfolio_section .heading figure{
    left: 0;
    right: 0;
    margin: 0 auto;
}
.our_portfolio_section .heading h6{
    color: var(--e-global-color-secondary);
}
.our_portfolio_section .heading h2{
    padding: 0 235px;
}
.our_portfolio_section .portfolio_box{
    position: relative;
    margin-bottom: 75px;
    transition: all 0.3s ease-in-out;
}
.our_portfolio_section .portfolio_box .left_circle_shape{
    top: -55px;
    left: -55px;
}
.our_portfolio_section .portfolio_box .portfolio_box_content{
    background-color: var(--e-global-color-white);
    box-shadow: rgba(0, 90, 171, 0.3) 0px 19px 38px, rgba(0, 90, 171, 0.22) 0px 15px 12px;
    padding: 22px 20px;
    border-radius: 15px;
    position: absolute;
    bottom: -45px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 86%;
    z-index: 2;
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-weight: bolder;
}
.our_portfolio_section .portfolio_box:hover .portfolio_box_content{
    background-color: var(--e-global-color-secondary);
}
.our_portfolio_section .portfolio_box .portfolio_box_content span{
    font-size: 23px;
    line-height: 14px;
    font-weight: 600;
    /*margin-bottom: 8px;*/
    display: block;
    color: var(--e-global-color-strong-red);
    text-transform: uppercase;
    /*letter-spacing: 0.8px;*/
    transition: all 0.3s ease-in-out;
}
.our_portfolio_section .portfolio_box:hover .portfolio_box_content span{
    color: var(--e-global-color-white);
}
.our_portfolio_section .portfolio_box .portfolio_box_content p{
    font-size: 18px;
    line-height: 22px;
    font-weight: 800;
    color: var(--e-global-color-primary);
    transition: all 0.3s ease-in-out;
}
.our_portfolio_section .portfolio_box:hover .portfolio_box_content p{
    color: var(--e-global-color-white);
}
.our_portfolio_section .portfolio_box .portfolio_image_wrapper{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.our_portfolio_section .portfolio_box .portfolio_image_wrapper figure img{
    border-radius: 30px;
}
.overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* background: -webkit-linear-gradient(358deg, #ed1c24,#005aab,);/* Chrome 10-25, Safari 5.1-6 */                           */
    background: linear-gradient(358deg, #ed1c2480,#005aab80);/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */                                             
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
    border-radius: 30px;
}
.portfolio_image_wrapper:hover .overlay {
    bottom: 0;
    height: 100%;
    width: 100%;
}
.bottom-overlay {
    top: 100%;
}
.portfolio_image_wrapper:hover .bottom-overlay {
    top: 0;
}
.box_hover_effect {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}
.our_portfolio_section .btn_wrapper{
    text-align: center;
    margin-top: 20px;
}
.our_portfolio_section .btn_wrapper a{
    padding: 20px 20px 20px 60px;
    border: 1px solid var(--e-global-color-accent);
}
.our_portfolio_section .btn_wrapper i{
    margin-left: 30px;
}
.our_portfolio_section .left_shape{
    top: 90px;
    left: 238px;
}

/* Home Page Who We Are Section Style */

.who_we_are_section {
    background-color: var(--e-global-color-mostly-white);
    padding: 128px 0;
    position: relative;
    overflow: hidden;
}
.who_we_are_section .who_we_are_background{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 40%;
}
.who_we_are_section .heading {
    padding-right: 70px;
}
.who_we_are_section .heading h6{
    color: var(--e-global-color-secondary);
}
.who_we_are_section .heading h2{
    color: var(--e-global-color-primary);
    margin-bottom: 50px;
}
.who_we_are_section .heading figure {
    bottom: -36px;
    left: 0;
}
.who_we_are_section .heading p{
    margin-bottom: 25px;
}
.who_we_are_section .box {
    display: inline-block;
    background-color: var(--e-global-color-white);
    width: 41.5%;
    align-items: center;
    padding: 30px 25px;
    border-radius: 20px;
    border: 1px solid var(--e-global-color-strong-red);
    box-shadow: 0px 19px 54px 0px rgb(181 27 65 / 5%);
    margin-right: 28px;
    transition: all 0.3s ease-in-out;
}
.who_we_are_section .box figure{
    margin-bottom: 14px;
}
.who_we_are_section .box figure img{
    transition: all 0.3s ease-in-out;
}
.who_we_are_section .box figure img:hover{
    transform: translateY(-5px);
}
.who_we_are_section .box figure img{
    transition: all 0.3s ease-in-out;
}
.who_we_are_section .box h5{
      margin-bottom: 14px;
    font-size: 22px;
    font-weight: 500;
    color: var(--e-global-color-primary);
    transition: all 0.3s ease-in-out;
}
.who_we_are_section .box p{
    line-height: 23px;
    transition: all 0.3s ease-in-out;
}
.who_we_are_section .box_2{
    border: 1px solid var(--e-global-color-secondary);
    box-shadow: 0px 19px 54px 0px rgb(246 162 64 / 5%);
}
.who_we_are_section .box:hover{
    background-color: var(--e-global-color-strong-red);
    border: 1px solid var(--e-global-color-strong-red);
}
.who_we_are_section .box:hover figure img{
    filter: brightness(0) invert(1);
}
.who_we_are_section .box:hover h5, .who_we_are_section .box:hover p {
    color: var(--e-global-color-white);
}
.who_we_are_section .box_2:hover{
    background-color: var(--e-global-color-secondary);
    border: 1px solid var(--e-global-color-secondary);
}
.who_we_are_section::after{
    content: "";
    background: url('../images/who_we_are_right_background.jpg');
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    opacity: 85%;                                         
}
.who_we_are_section::before{
    content: "";
    background-color: #000000;
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.who_we_are_section .right_images{
    z-index: 1;
}
.who_we_are_section .right_images .right_shape1{
    top: -130px;
    left: -15px;
}
.who_we_are_section .right_images .right_shape2{
    left: 178px;
    top: -25px;
}
.who_we_are_section .right_shape3{
    right: -10px;
    bottom: -4px;
    z-index: 1;
}
.who_we_are_section .content_wrapper{
    bottom: 50px;
    right: 95px;
    z-index: 1;
}
.who_we_are_section .content_wrapper .video_icon{
    float: left;
    width: 13%;
}
.who_we_are_section .content_wrapper .content{
    display: inline-block;
    width: 60%;
    padding: 15px 0 0 22px;
}
.who_we_are_section .content_wrapper .content p{
    font-size: 28px;
    line-height: 35px;
    font-weight: 800;
    transition: all 0.3s ease-in-out;
}
.who_we_are_section .content_wrapper .content p:hover {
    color: var(--e-global-color-secondary) !important;
}

/* Home Page Testimonials Section Style */

.testimonials-section{
    padding: 90px 0 90px;
}
.testimonials-section .heading {
    margin-bottom: 65px;
}
.testimonials-section .heading h6{
    color: var(--e-global-color-secondary);
}
.testimonials-section .heading h2{
    color: var(--e-global-color-primary);
    padding: 0 210px;
}
.testimonials-section .heading figure{
    left: 0;
    right: 0;
    margin: 0 auto;
}
.testimonials-section .testimonial-box {
    background-color: var(--e-global-color-white);
    padding: 40px 15px;
    border-radius: 20px;
    box-shadow: 0px 19px 54px 0px rgb(0 0 0 / 4%);
    text-align: center;
}
.testimonials-section .testimonial-box ul {
    margin-bottom: 16px;
}
.testimonials-section .testimonial-box ul li {
    display: inline-block;
}
.testimonials-section .testimonial-box ul li i {
    color: var(--e-global-color-secondary);
    font-size: 18px;
}
.testimonials-section .testimonial-box p{
    color: var(--e-global-color-primary);
}
.testimonials-section .testimonial-box .info {
    margin-left: -118px;
}
.testimonials-section .testimonial-box .info .image_wrapper {
    width: 18%;
    display: inline-block;
}
.testimonials-section .testimonial-box .designation-outer {
    display: inline-block;
    text-align: left;
    position: absolute;
    width: 40%;
    top: 5px;
}
.testimonials-section .testimonial-box .designation-outer .name{
    font-weight: 800;
}
.testimonials-section .testimonial-box .designation-outer .designation{
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: var(--e-global-color-text);
}
.testimonials-section .testimonial-box .quote-img {
    top: 45px;
    right: 0;
}
.testimonials-section .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 40px !important;
    line-height: 0;
}
.testimonials-section .owl-carousel .owl-dots .owl-dot span {
    background: #d1d1d1;
    width: 13px;
    height: 13px;
    margin: 0 4px;
    transition: all 0.3s ease-in-out;
}
.testimonials-section .owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--e-global-color-accent);
}
.testimonials-section .owl-carousel .owl-dots .owl-dot.active span {
    background: var(--e-global-color-accent);
}
.testimonials-section .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

.testimonials-section .owl-carousel .item {
    opacity:0.4;
    transition:.4s ease all;
}
.testimonials-section .owl-carousel .active .item{
    opacity:1;
    transform:scale(1);
} 
.testimonials-section .left_shape{
    top: -35px;
    left: -85px;
}
.testimonials-section .right_shape{
    top: -48px;
    right: -158px;
}
.testimonials-section .bottom_shape{
    bottom: 0;
    left: -10px;
}

.third-party{
    background-image: url(../images/testimonials-bg.jpg);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: fixed;
}

/* Home Page Our Staff Section Style */

.our_staff_section{
    background-color: var(--e-global-color-mostly-white);
    padding: 130px 0 125px;
    position: relative;
}
.our_staff_section .staff_background{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 10%;
}
.our_staff_section .heading {
    margin-bottom: 65px;
}
.our_staff_section .heading h6{
    color: var(--e-global-color-secondary);
}
.our_staff_section .heading h2{
    color: var(--e-global-color-primary);
    padding: 0 215px;
}
.our_staff_section .heading figure{
    left: 0;
    right: 0;
    margin: 0 auto;
}
.our_staff_section .staff_box{
    background-color: #005aab;
    /*box-shadow: 0px 19px 54px 0px rgb(0 0 0 / 1%);*/
    padding: 0px 0px 12px 0;
    transition: all 0.3s ease-in-out;
    /*border-radius: 30px;*/
}
.our_staff_section .staff_box .image_wrapper figure img{
    /*border-radius: 20px;*/
    width: 100%;
}
.our_staff_section .staff_box:hover{
    background-color: var(--e-global-color-strong-red);
    box-shadow: 0px 19px 54px 0px rgb(181 27 65 / 5%);
}
.our_staff_section .staff_box h5{
color: #ffffff;
    transition: all 0.3s ease-in-out;
    font-size: 26px;
    font-weight: 500;
}
.our_staff_section .staff_box p{
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}
.our_staff_section .staff_box:hover h5 , .our_staff_section .staff_box:hover p{
    color: var(--e-global-color-white);
}
.our_staff_section .staff_box .image_wrapper .icons ul li {
    padding-bottom: 12px;
}
.our_staff_section .staff_box .image_wrapper .icons ul li:last-child{
    padding-bottom: 0;
}
.our_staff_section .staff_box .image_wrapper .icons ul {
    bottom: 100px;
    left: 20px;
    display: none;
}
.our_staff_section .staff_box .image_wrapper .icons {
    height: 0;
    margin-left: 0;
    z-index: 1;
    position: relative;
}
.our_staff_section .staff_box .image_wrapper .icons ul li i {
    border-radius: 100%;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-secondary);
    font-size: 16px;
    line-height: 38px;
    height: 38px;
    width: 38px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.our_staff_section .staff_box .image_wrapper .icons ul li i:hover{
    background-color: var(--e-global-color-strong-red);
}
.our_staff_section .staff_box:hover .image_wrapper ul {
    display: block;
} 
.our_staff_section .owl-carousel .owl-dots .owl-dot.active span {
    background: var(--e-global-color-secondary);
}
.our_staff_section .owl-carousel .owl-dots .owl-dot span {
    background: #d2d1d1;
    width: 13px;
    height: 13px;
    margin: 0 4px;
    transition: all 0.3s ease-in-out;
}
.our_staff_section .owl-carousel .owl-dots {
    display: block !important;
    margin-top: 50px !important;
    line-height: 0;
    outline: none;
}
.our_staff_section .owl-carousel .owl-dots button:focus{
    outline: none;
}

/* Home Page Client Logo's Section Style */

.client_logo_section{
 padding: 50px 0;
    text-align: center;
    position: relative;
}
.client_logo_section ul{
    width: 100%;
    float: left;
}
.client_logo_section ul li{
    border: 1px solid var(--e-global-color-very-light-gray);
    width: 25%;
    height: 148px;
    line-height: 148px;
    transition: 0.3s all ease-in-out;
    float: left;
}
.client_logo_section ul li:last-child{
    border: 1px solid var(--e-global-color-very-light-gray);
    display: inline-block;
}
.client_logo_section .second li{
    display: inline-block;
    border-right: 1px solid var(--e-global-color-very-light-gray);
    border-bottom: none;
}
.client_logo_section .second li:last-child{
    display: inline-block;
    border-bottom: none;
}
.client_logo_section ul li figure img{
    transition: 0.3s all ease-in-out;
}

/* Home Page Contact Us Section Style */

.contact-section .contact_box{
    z-index: 1;
}
.contact-section .left_image img{
    width: 100%;
    border-radius: 28px 0 0 28px;
}
.contact-section .contact_right_content {
    background-color: var(--e-global-color-secondary);
    padding: 62px 47px 67px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
}
.contact-section .heading {
    padding-top: 0;
    padding-left: 5px;
}
.contact-section .heading h6 {
    margin-bottom: 8px;
}
.contact-section .heading h2 {
    margin-bottom: 48px;
    padding-right: 60px;
}
.contact-section .heading figure {
    left: 5px;
    bottom: -26px;
}
.contact-section .contact_right_content form .form-group {
    margin-bottom: 20px;
}
.contact-section .contact_right_content form input, .contact-section .contact_right_content form textarea {
    font-size: 16px;
    padding: 0 24px;
    height: 60px;
    line-height: 60px;
    color: var(--e-global-color-text);
    border-radius: 50px;
    background-color: var(--e-global-color-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    box-shadow: none;
    outline: none;
    border: none;
    width: 100%;
}
.contact-section .contact_right_content form textarea {
    height: 138px;
    margin-bottom: 30px;
    border-radius: 20px;
}
.contact-section .contact_right_content form .btn {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
   font-family: 'Poppins', sans-serif;
    width: 100%;
    padding: 20px 0;
    border-radius: 100px;
    display: inline-block;
    color: var(--e-global-color-white);
    background: var(--e-global-color-strong-red);
}
.contact-section .contact_right_content form .btn:hover{
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-strong-red);
}
.contact-section .contact_right_content form .btn i{
    font-family: 'Font Awesome 6 Free';
    font-size: 20px;
    line-height: 20px;
    margin-left: 15px;
}
.contact-section .contact_right_content .form-control::placeholder{
    color: var(--e-global-color-text);
}
.form-control:focus{
    box-shadow: none;
    outline: none;
    border: none;
}
.contact-section .left_shape {
    top: -35px;
    left: -18px;
}
.contact-section .right_shape {
    top: 0;
    right: 0;
}

/* Home Page Footer Section Style */

.footer-section{
    background-color: #00203c;
    padding: 75px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.footer-section .middle-portion{
    margin-bottom: 95px;
}
.footer-section .middle-portion figure{
    margin-bottom: 20px;
}
.footer-section .middle-portion p{
    line-height: 25px;
    color: var(--e-global-color-dark-grayish);
}
.footer-section .middle-portion ul li{
    text-align: left;
}
.footer-section .middle-portion ul .live_icons{
    display: inline-block;
    margin-right: 15px;
}
.footer-section .middle-portion ul .live_icons i{
    border-radius: 100%;
    background-color: #544e53;
    font-size: 16px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion ul .live_icons i:hover{
    background-color: var(--e-global-color-accent);
}
.footer-section .middle-portion .useful_links{
    padding-left: 50px;
}
/*.footer-section .middle-portion .services_links{*/
/*    margin-left: -25px;*/
/*}*/
.footer-section .middle-portion .contact_links{
    padding-left: 28px;
}
.footer-section .middle-portion ul li a{
    text-decoration: none;
    color: var(--e-global-color-dark-grayish);
    font-weight: 500;
    font-size: 17px;
    line-height: 16px;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion ul li i{
    color: var(--e-global-color-dark-grayish);
    font-size: 14px;
    line-height: 14px;
    margin-right: 0;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion ul .arrow{
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion ul .mail_link{
    margin-bottom: 10px;
}
.footer-section .middle-portion ul .arrow:hover a, .footer-section .middle-portion ul .arrow:hover{
    color: var(--e-global-color-accent);
}
.footer-section .middle-portion ul .arrow:hover i, .footer-section .middle-portion ul .arrow:hover{
    color: var(--e-global-color-accent);
}
.footer-section .middle-portion ul li span{
    color: var(--e-global-color-dark-grayish);
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    display: block;
    margin-bottom: 15px;
}
.footer-section .middle-portion h5{
    font-size: 22px;
    text-align: left;
    margin-bottom: 29px;
    text-transform: uppercase;
}
.footer-section .middle-portion .outer-div .callus_outer {
    top: 0;
    left: 0;
}
.footer-section .middle-portion .outer-div .callus_outer span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}
.footer-section .middle-portion .outer-div .callus_outer a {
    font-size: 20px;
    line-height: 20px;
    font-weight: 800;
    display: block;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion .outer-div .callus_outer a:hover {
    color: var(--e-global-color-accent) !important;
}
.footer-section .bottom-portion{
    border-top: 1px solid var(--e-global-color-dark-grayish);
    padding: 25px 0;
}
.footer-section .bottom-portion p{
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: var(--e-global-color-dark-grayish);
}
.footer-section .left_shape{
    top: 140px;
    left: 255px;
}
.footer-section .right_shape{
    top: 270px;
    right: 30px;
}

/* About Page Style */

/* About Page Banner Section Style */

.about-banner-section {
    background-color: #000000;
    overflow: hidden;
}
.about-banner-section::before {
    content: "";
    background-image: url('../images/about_banner_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 35%;
}
.sub-banner-section-outer .banner-section{
    padding: 142px 0 155px;
}
.sub-banner-section-outer .banner-section .banner-section-content h1{
    margin-bottom: 18px;
}
.sub-banner-section-outer .banner-section .banner-section-content p{
    padding: 0 250px;
    margin-bottom: 35px;
}
.sub-banner-section-outer .banner-section .btn_wrapper {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    padding: 15px 35px;
    text-align: center;
    border-radius: 50px;
    background-color: transparent;
    color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-very-dark-gray);
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.sub-banner-section-outer .banner-section .btn_wrapper .sub_home_span {
    margin-right: 10px;
}
.sub-banner-section-outer .banner-section .btn_wrapper .sub_span {
    color: var(--e-global-color-accent);
    margin-left: 10px;
}
.sub-banner-section-outer .shape1{
    left: -2px;
    top: 0;
}
.sub-banner-section-outer .shape2{
    bottom: 0px;
    left: -10px;
}
.sub-banner-section-outer .shape3{
    bottom: 0;
    right: -10px;
}
.sub-banner-section-outer .banner-section .shape4{
    top: 70px;
    left: 150px;
    z-index: 1;
}
.sub-banner-section-outer .banner-section .shape5{
    bottom: 82px;
    right: 150px;
    z-index: 1;
}
.sub-banner-section-outer .banner-section .shape6{
    bottom: 55px;
    right: 35px;
    z-index: 1;
}

/* About Page About Us Section Style */

.about_section{
    padding: 140px 0 160px;
}
.about_section .about_images .about_img1{
    top: 38px;
    left: 0;
    z-index: 1;
}
.about_section .about_images .about_img1 img{
    border-radius: 25px;
}
.about_section .about_images .about_img2{
    top: 305px;
    left: 0;
    z-index: 1;
}
.about_section .about_images .about_img2 img{
    border-radius: 25px;
}
.about_section .about_images .about_img3{
    right: 35px;
    top: 0;
}
.about_section .about_images .about_img3 img{
    border-radius: 25px;
}
.about_section .about_images .about_img4{
    right: 35px;
    top: 305px;
}
.about_section .about_images .about_img4 img{
    border-radius: 25px;
}
.about_section .about_images .about_shape1{
    left: -30px;
    top: 10px;
}
.about_section .about_images .about_shape1 img{
    border-radius: 15px;
}
.about_section .about_images .about_shape2{
    left: -45px;
    top: 405px;
}
.about_section .about_images .aboutus_img_box {
    display: inline-block;
    width: 34%;
    top: 185px;
    left: 142px;
    text-align: center;
    z-index: 2;
    border-radius: 20px;
    padding: 30px 20px 20px;
    background-color: var(--e-global-color-white);
    box-shadow: 0px 19px 54px 0px rgb(0 0 0 / 5%);
    transition: all 0.3s ease-in-out;
}
.about_section .about_images .aboutus_img_box figure {
    margin-bottom: 14px;
}
.about_section .about_images .aboutus_img_box figure img {
    transition: all 0.3s ease-in-out;
}
.about_section .about_images .aboutus_img_box figure img:hover{
    transform: scale(1.1);
}
.about_section .about_images .aboutus_img_box span {
    font-size: 42px;
    line-height: 44px;
    font-weight: 800;
    color: var(--e-global-color-primary);
    transition: all 0.3s ease-in-out;
}
.about_section .about_images .aboutus_img_box p {
    transition: all 0.3s ease-in-out;
}
.about_section .about_images .aboutus_img_box:hover {
    background-color: var(--e-global-color-strong-red);
}
.about_section .about_images .aboutus_img_box:hover figure img {
    filter: brightness(0) invert(1);
}
.about_section .about_images .aboutus_img_box:hover .span_wrapper span {
    color: var(--e-global-color-white);
}
.about_section .about_images .aboutus_img_box:hover p {
    color: var(--e-global-color-white);
}
.about_section .heading{
    padding-top: 15px;
}
.about_section .heading .line_wrapper figure{
    bottom: -36px;
    left: 0;
}
.about_section .heading h6{
    color: var(--e-global-color-secondary);
    margin-bottom: 8px;
}
.about_section .heading h2{
    color: var(--e-global-color-primary);
    margin-bottom: 50px;
}
.about_section .heading p{
    margin-bottom: 10px;
}
.about_section .heading .pp{
    margin-bottom: 26px;
}
.about_section .heading ul{
    margin-bottom: 30px;
}
.about_section .heading ul li{
    position: relative;
    display: inline-block;
}
.about_section .heading ul li p{
    line-height: 16px;
    font-weight: 600;
    color: var(--e-global-color-primary);
    margin-bottom: 9px;
    padding-left: 25px;
}
.about_section .heading ul li p:hover{
    color: var(--e-global-color-strong-red);
}
.about_section .heading ul li i {
    background-color: var(--e-global-color-strong-red);
    color: var(--e-global-color-white);
    font-size: 12px;
    line-height: 16px;
    display: inline-block;
    border-radius: 100px;
    height: 16px;
    width: 16px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
.about_section .heading ul .list_one p{
    margin-right: 28px;
}
.about_section .heading ul .list_two p{
    margin-right: 16px;
}
.about_section .heading ul .list_three p{
    margin-right: 22px;
}
.about_section .heading .btn_wrapper a {
    border: 1px solid var(--e-global-color-accent);
    padding: 20px 25px 20px 40px;
}
.about_section .heading .btn_wrapper a:hover {
    border: 1px solid var(--e-global-color-strong-red);
}

/* About Page Our Achievements Section Style */

.our_achievements_section {
         background: #000000;
        padding: 52px 0 42px;
}
.our_achievements_section::before {
    content: "";
    background-image: url('../images/abt-pg-achivements-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    opacity: 0.4;
}
.our_achievements_section .heading{
    position: relative;
    z-index: 1;
}
.our_achievements_section .heading h6{
    color: var(--e-global-color-secondary);
    margin-bottom: 18px;
}
.our_achievements_section .heading h2{
    margin-bottom: 50px;
}
.our_achievements_section .heading figure{
    bottom: -35px;
    left: 0;
}
.our_achievements_section .heading p{
    margin-bottom: 35px;
}
.our_achievements_section .heading .btn_wrapper a{
    padding: 20px 18px 20px 40px;
    border: 1px solid var(--e-global-color-accent);
}
.our_achievements_section .heading .btn_wrapper a:hover{
    border: 1px solid var(--e-global-color-strong-red);
}
.our_achievements_section .achievements_right_content{
    position: relative;
    padding-left: 40px;
    padding-top: 48px;
    z-index: 1;
}
.our_achievements_section .box{
    margin-right: 22px;
}
.our_achievements_section .our_achievements_box{
    text-align: center;
    width: 48%;
    float: left;
    position: relative;
    margin-bottom: 52px;
}
.our_achievements_section .our_achievements_box figure{
    background-color: var(--e-global-color-strong-red);
    display: inline-block;
    height: 120px;
    width: 120px;
    line-height: 120px;
    border-radius: 100px;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}
.our_achievements_section .our_achievements_box figure img{
    transition: all 0.3s ease-in-out;
}
.our_achievements_section .our_achievements_box figure img:hover{
    transform: scale(1.1);
}
.our_achievements_section .our_achievements_box .yellow_circle{
    background-color: var(--e-global-color-accent);
}
.our_achievements_section .our_achievements_box figure:hover{
    background-color: var(--e-global-color-accent);
}
.our_achievements_section .our_achievements_box .yellow_circle:hover{
    background-color: var(--e-global-color-strong-red);
}
.our_achievements_section .our_achievements_box span{
    font-size: 36px;
    line-height: 30px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 12px;
}
.our_achievements_section .our_achievements_box .plus{
    margin-left: -3px;
}
.our_achievements_section .our_achievements_box .span_wrapper:hover span{
    color: var(--e-global-color-secondary) !important;
}  
.our_achievements_section .our_achievements_box p{
    color: #c0b9bf;
}
.our_achievements_section .triangle_shape{
    right: -172px;
    top: 92px;
}
.our_achievements_section .left_shape{
    left: 18px;
    top: 5px;
}
.our_achievements_section .right_shape{
    bottom: -30px;
    right: -28px;
}
.our_achievements_section .our_achievements_box .image_wrapper{
    float: left;
    width: 38%;
}
.our_achievements_section .our_achievements_box .content_wrapper{
    display: inline-block;
    position: absolute;
    width: 62%;
    top: 28px;
    left: 138px;
    text-align: left;
}

/* About Page Mission & Vision Section Style */

.mission_vision_section{
       padding: 80px 0;
}
.mission_vision_section .box{
    display: inline-block;
    background-color: var(--e-global-color-white);
    width: 100%;
    padding: 30px 26px 30px;
    border-radius: 20px;
    border: 1px solid var(--e-global-color-strong-red);
    box-shadow: 0px 19px 54px 0px rgb(181 27 65 / 5%);
    transition: all 0.3s ease-in-out;
}
.mission_vision_section .box2{
    border: 1px solid var(--e-global-color-secondary);
    box-shadow: 0px 19px 54px 0px rgb(246 162 64 / 5%);
}
.mission_vision_section .box .image_wrapper{
    float: left;
    width: 26%;
    padding-top: 10px;
}
.mission_vision_section .box .image_wrapper figure img{
    transition: all 0.3s ease-in-out;
}
.mission_vision_section .box .image_wrapper figure img:hover{
    transform: translateY(-10px);
}
.mission_vision_section .box .content{
    display: inline-block;
    width: 70%;
}
.mission_vision_section .box .content h4{
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}
.mission_vision_section .box .content p{
    line-height: 26px;
    transition: all 0.3s ease-in-out;
}
.mission_vision_section .box:hover{
    background-color: var(--e-global-color-strong-red);
    border: 1px solid var(--e-global-color-strong-red);
}
.mission_vision_section .box:hover h4, .mission_vision_section .box:hover p{
    color: var(--e-global-color-white);
}
.mission_vision_section .box:hover figure img{
    filter: brightness(0) invert(1);
}
.mission_vision_section .box2:hover{
    background-color: var(--e-global-color-secondary);
    border: 1px solid var(--e-global-color-secondary);
}

/* Services Page Style */

/* Services Page Banner Section Style */

.services-banner-section {
    background-color: #000000;
    overflow: hidden;
}
.services-banner-section::before {
    content: "";
    background-image: url('../images/services_banner_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 35%;
}
.services-banner-section .banner-section .btn_wrapper {
    padding: 15px 32px;
}

/* Services Page Services Section Style */

.services_section{
    padding: 140px 0 112px;
}
.services_section .heading{
    margin-bottom: 65px;
}
.services_section .heading figure{
    left: 0;
    right: 0;
    margin: 0 auto;
}
.services_section .heading h6{
    color: var(--e-global-color-secondary);
}
.services_section .heading h2{
    padding: 0 235px;
    color: var(--e-global-color-primary);
}
.services_section .box{
    width: 100%;
    border-radius: 30px;
    padding: 58px 28px 55px;
    background-color: var(--e-global-color-white);
    box-shadow: 0px 19px 54px 0px rgb(0 0 0 / 4%);
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--e-global-color-white);
    margin-bottom: 25px;
}
.services_section .box figure{
    margin-bottom: 30px;
}
.services_section .box figure img{
    transition: all 0.3s ease-in-out;
}
.services_section .box figure img:hover{
    transform: translateY(-10px);
}
.services_section .box h4{
    padding-right: 35px;
    color: var(--e-global-color-primary);
}
.services_section .box p{
    margin-bottom: 24px;
    line-height: 26px;
}
.services_section .box .btn_wrapper a{
    font-size: 16px;
    line-height: 16px;
    color: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.services_section .box .btn_wrapper i{
    margin-left: 10px;
}
.services_section .box:hover{
    border: 1px solid var(--e-global-color-strong-red);
    box-shadow: 0px 19px 54px 0px rgb(181 27 65 / 6%);
}
.services_section .box:hover .btn_wrapper a{
    color: var(--e-global-color-strong-red);
}
.services_section .box:hover .btn_wrapper a:hover{
    color: var(--e-global-color-accent);
}

/* Services Page Video Section Style */

.video_section{
    margin-top: -380px;
}
.video_section .video_icon::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000000;
    border-radius: 40px;
}
.video_section .video_icon .video_img{
    z-index: 1;
    opacity: 80%;
}
.video_section .video_icon .video_img img{
    border-radius: 40px;
}
.video_section .video_icon .left_circle_shape{
    top: -40px;
    left: -55px;
}
.video_section .left_shape{
    top: -95px;
    left: 238px;
}

/* Services Page Testimonials Section Style */

.sub_testimonials_section{
    padding: 135px 0 60px;
}
.sub_testimonials_section .bottom_shape {
    bottom: -370px;
    left: -10px;
}

/* Services Page Client Logo's Section Style */

.sub_client_logo_section{
    padding: 70px 0 130px;
}

/* Our Projects Page Style */

/* Our Projects Page Banner Section Style */

.projects-banner-section {
    background-color: #000000;
    overflow: hidden;
}
.projects-banner-section::before {
    content: "";
    background-image: url('../images/projects_banner_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 35%;
}
.projects-banner-section .banner-section .btn_wrapper {
    padding: 15px 32px;
}

/* Our Projects Page Our Portfolio Section Style */

.sub_portfolio_section{
    margin-top: 0;
    padding: 135px 0 110px;
}
.sub_portfolio_section .heading h2{
    color: var(--e-global-color-primary);
}
.sub_portfolio_section .left_shape{
    top: 225px;
    left: 238px;
}

/* Our Projects Page Create Section Style */

.create_section {
    background-color: #362f35;
    padding: 125px 0 130px;
}
.create_section::before {
    content: "";
    background-image: url('../images/create_section_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 10%;
    top: 0;
}
.create_section .heading h6{
    color: var(--e-global-color-secondary);
}
.create_section .heading h2{
    margin-bottom: 48px;
    padding: 0 210px;
}
.create_section .heading figure {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 140px;
}
.create_section .heading p{
    padding: 0 180px;
    margin-bottom: 42px;
}
.create_section .left_shape{
    left: -10px;
    top: 0;
}
.create_section .second_left_shape{
    top: 105px;
    left: 180px;
}
.create_section .right_shape{
    bottom: -2px;
    right: -10px;
}

/* Our Team Page Style */

/* Our Team Page Banner Section Style */

.team-banner-section {
    background-color: #000000;
    overflow: hidden;
}
.team-banner-section::before {
    content: "";
    background-image: url('../images/team_banner_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 40%;
}
.team-banner-section .banner-section .btn_wrapper {
    padding: 15px 42px;
}

/* Our Team Page Our Staff Section Style */

.team_staff_section{
    padding: 138px 0 110px;
    background: var(--e-global-color-white);
}
.team_staff_section .staff_box{
    box-shadow: 0px 19px 54px 0px rgb(0 0 0 / 4%);
    margin-bottom: 30px;
}
.team_staff_section .staff_box:hover{
    background-color: var(--e-global-color-strong-red);
    box-shadow: 0px 19px 54px 0px rgb(181 27 65 / 5%);
}

/* Our Faq's Page Style */

/* Our Faq's Page Banner Section Style */

.faq-banner-section {
    background-color: #000000;
    overflow: hidden;
}
.faq-banner-section::before {
    content: "";
    background-image: url('../images/faq_banner_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 35%;
}
.faq-banner-section .banner-section .btn_wrapper {
    padding: 15px 45px;
}

/* Our Faq's Page Faq's Section Style */

.accordian-section{
    background-color: var(--e-global-color-mostly-white);
    text-align: center;
    /*padding: 138px 0 142px;*/
    position: relative;
}
.accordian-section .faq_background{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 40%;
}
.accordian-section .heading{
    margin-bottom: 65px;
}
.accordian-section .heading h6{
    color: var(--e-global-color-secondary);
}
.accordian-section .heading h2{
    color: var(--e-global-color-primary);
}
.accordian-section .heading figure{
    left: 0;
    right: 0;
    margin: 0 auto;
}
.accordian-section .accordion-card button.btn.btn-link {
    color: var(--e-global-color-accent);
    background: var(--e-global-color-white);
    border-radius: 20px;
}
.accordian-section p{
    margin-bottom: 33px;
}
.accordian-section .accordian-inner .accordion-card .btn {
    padding: 15px 65px 15px 30px;
    text-decoration: none;
   font-family: 'Poppins', sans-serif;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
}
.accordian-section .accordion-card button.btn.btn-link.collapsed {
    color: var(--e-global-color-primary);
    background: var(--e-global-color-white);
}
.accordian-section .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    border: none;
    background: none;
}
.accordian-section .accordian-inner .card-body {
    padding: 0px 30px 25px;
}
.accordian-section .accordian-inner .card-body p{
   font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 23px;
    color: var(--e-global-color-text);
    font-weight: 500;
}
.accordian-section .accordion-card button.btn.btn-link:focus{
    outline: none;
    box-shadow: none;
    box-shadow: 0px 19px 54px 0px rgb(246 162 64 / 5%);
}
.accordian-section .accordian-inner .accordion-card {
    margin-bottom: 30px;
    /*box-shadow: 0px 11px 54px 0px rgb(0 0 0 / 3%);*/
    box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 15px;
    background: var(--e-global-color-white);
    border-radius: 10px;
    border: 1px solid var(--e-global-color-secondary);
}
.accordian-section .accordion-card .btn-link:before {
    content: "\f068";
    position: absolute;
    right: 12px;
    top: 10px;
    font-family: 'FontAwesome';
    display: inline-block;
    vertical-align: middle;
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-secondary);
    font-size: 20px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 100px;
    text-align: center;
}



.accordian-section .accordion-card .collapsed:before {
    content: "\2b";
    color: var(--e-global-color-white);
    background-color: var(--e-global-color-strong-red);
    border-radius: 100px;
    text-align: center;
}
.accordian-section .accordian-inner .accordion-card:last-child {
    margin-bottom: 0;
}
.accordian-section .accordion-card button.btn.btn-link.collapsed:hover {
    color: var(--e-global-color-accent);
}

/* Contact Us Page Style */

/* Contact Us Page Banner Section Style */

.contact-banner-section {
    background-color: #000000;
    overflow: hidden;
}
.contact-banner-section::before {
    content: "";
    background-image: url('../images/contact_banner_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 35%;
}
.contact-banner-section .banner-section .btn_wrapper {
    padding: 15px 32px;
}

/* Contact Us Page Contact Info Section Style */

.contact_info_section{
    background-color: var(--e-global-color-mostly-white);
       padding: 75px 0 75px;
    position: relative;
}
.contact_info_section .contact_info_background{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 40%;
}
.contact_info_section .heading{
    margin-bottom: 65px;
}
.contact_info_section .heading h6{
    color: var(--e-global-color-secondary);
}
.contact_info_section .heading h2{
    color: var(--e-global-color-primary);
}
.contact_info_section .heading figure{
    left: 0;
    right: 0;
    margin: 0 auto;
}
.contact_info_section .box {
    width: 100%;
    border-radius: 30px;
    padding: 48px 32px;
    transition: all 0.3s ease-in-out;
}
.contact_info_section .box:hover figure img{
    filter: brightness(0);
}
.contact_info_section .box:hover h5{
    color: var(--e-global-color-primary) !important;
}
.contact_info_section .box:hover ul li{
    color: var(--e-global-color-text) !important;
}
.contact_info_section .box:hover ul li a{
    color: var(--e-global-color-text) !important;
}
.contact_info_section .box:hover ul li i{
    color: var(--e-global-color-primary) !important;
}
.contact_info_section .box1{
    background-color: var(--e-global-color-strong-red);
    border: 1px solid var(--e-global-color-white);
}
.contact_info_section .box1:hover{
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-strong-red);
}
.contact_info_section .box figure{
    margin-bottom: 30px;
    padding-left: 2px;
}
.contact_info_section .box figure img{
    transition: all 0.3s ease-in-out;
}
.contact_info_section .box figure img:hover{
    transform: scale(1.1);
}
.contact_info_section .box h5{
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
}
.contact_info_section .box ul li{
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}
.contact_info_section .box ul li i{
    margin-right: 16px;
    transition: all 0.3s ease-in-out;
}
.contact_info_section .box ul li a{
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}
.contact_info_section .box ul li:hover, .contact_info_section .box ul li:hover i {
    color: var(--e-global-color-accent) !important;
}
.contact_info_section .box ul li:hover a, .contact_info_section .box ul li:hover i {
    color: var(--e-global-color-accent) !important;
}
.contact_info_section .box2{
    background-color: #362f35;
    border: 1px solid var(--e-global-color-white);
}
.contact_info_section .box2:hover{
    background-color: var(--e-global-color-white);
    border: 1px solid #362f35;
}
.contact_info_section .box3{
    background-color: var(--e-global-color-secondary);
    border: 1px solid var(--e-global-color-white);
}
.contact_info_section .box3:hover{
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-secondary);
}
.contact_info_section .box ul .box_li i{
    margin-right: 12px;
}
.contact_info_section .box:hover{
    transform: translateY(-10px);
}

/* Contact Us Page Contact Map Section Style */

.contact_map_section{
   /* margin-top: -155px;*/
}
.contact_map_section iframe{
    box-shadow: 0px 11px 54px 0px rgb(0 0 0 / 3%);
    border: 15px solid var(--e-global-color-white);
    border-radius: 30px;
}

/* Contact Us Page Client Logo's Section Style */

.contact_client_section{
    padding: 120px 0 130px;
}

/* Blog Posts Page Style */

.blog-posts {
       padding: 40px 0;
}

/* slider */

.banner {
    height: 700px;
    min-height: 300px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  
  .slider .carousel-caption {
    /*  bottom: 270px;*/
    top: 165px;
  }
  
  .slider .carousel-caption h5 {
        font-size: 83px !important;
    line-height: 101px;
    text-transform: uppercase;
    margin-bottom: 30px;
    width: 42%;
    color: #d1e9ff;
   /* -webkit-text-stroke: 2px #ed1c24;*/
  
  }

    
  
  .slider .carousel-caption p {
    font-size: 25px;
    line-height: 1.;
  }
  
  #banner-slider {
    /*height: 350px;*/
    width: 100%;
  }
  
  .slider .carousel-indicators li {
    width: 50px;
    height: 50px;
    border-radius: 100%;
  }
  .slider .carousel-indicators {
    /* right: -95%;*/
    /* display: inline-grid;*/
    bottom: 0;
    justify-content: flex-end;
  }
  .slider .carousel-indicators li img {
    border-radius: 50%;
    border: 1px solid #fff;
  }
  
  .main-nav .navbar-toggler {
    background: #fff;
  }
  
  .main-nav .navbar-toggler {
    padding: 1px 5px;
    font-size: 18px;
    line-height: 0.3;
  }
  
  .main-nav {
       background: #fff !important;
    padding: 5px 30px;
    transition: 0.7s all;
    -moz-transition: 0.7s all;
    -webkit-transition: 0.7s all;
    -o-transition: 0.7s all;
    display: inherit;
  }
  .main-nav .navbar-nav .nav-item .nav-link {
    position: relative; 
    font-size: 14px;
    color: #000b14;
    padding-left: 18px;
    padding-right: 18px;
    text-transform: uppercase;
  }

  a.nav-link:hover{
    color: #ed1c24 !important;
  }
  
  @media (min-width: 0px) and (max-width: 768px) {
    .banner {
      height: 400px;
    }
    .slider .carousel-caption {
      /* bottom: 30%;*/
      display: block !important;
    }
  
    .slider .carousel-caption h5 {
      font-size: 23px;
      letter-spacing: 2px;
    }
  
    .slider .carousel-caption p {
      font-size: 11px;
      letter-spacing: 1px;
    }
    .slider .carousel-indicators {
      display: none;
  
      right: -55%;
    }
  }
  
  .banner-tab ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    background: #fff;
  }
  .banner-tab ul.tabs li {
    display: inline-block;
    padding: 23px 118px;
    cursor: pointer;
    font-size: 20px;
  }
  
  .banner-tab ul.tabs li.current {
    color: #fff;
  }
  
  .banner-tab .tab-content {
    display: none;
    background: #ededed;
    padding: 30px;
  }
  .banner-tab .tab-content p {
    font-size: 18px;
  }
  .banner-tab .tab-content h5 {
    color: #0f3d70;
  }
  
  .banner-tab .tab-content.current {
    display: inherit;
  }
  .banner-tab {
    top: -3%;
    position: relative;
    z-index: 111;
  }
  .banner-tab .row {
    margin-right: -10px !important;
  }

  /* menu New */

  .parent {
	display: block;
	position: relative;
	float: left;
	line-height: 50px;
  padding: 0 17px;
}

.parent a {
	color: #fff;
	text-decoration: none;
    text-transform: uppercase;
    font-size: 21px;
    font-weight: 400;
    font-family: Oswald;
}
.header ul li a.activee{
    color: #ed1c24;
}

.header .parent a:hover,.active .parent a:hover{
    color: #ed1c24;
}

.parent:hover>ul {
	display: block;
	position: absolute;
}

.child {
	display: none;
    margin-left: -115px;
    text-align: left !important;
}

.child li {
	    background-color: #fff;
    line-height: 1.9;
    border-bottom: 1px solid #efe5e5;
    width: 300px;
    padding: 6px 0px;
    z-index: 9;
  transition: 0.5s;
}

.child .li-activee{
  background: #005aab;
}
.child li .a-activee{
    color: #fff !important;
}

.child li:hover{
    background: #005aab;
        /*border-left: 7px solid #0067c1;*/
    transform: translateX(8px);
}
.header .child li a,.active .child li a{
	       color: #000;
    font-size: 18px;
    transition: 0.3s;
    /*padding-left: 16px;*/
    font-weight: 400;
    display: block;
    padding: 8px 12px;
}
.header .child li a:hover,.active .child li a:hover{
  color: #ffffff;
    /*padding-left: 17px;*/
}


ul {
	list-style: none;
	margin: 0;
}

ul ul ul {
	left: 100%;
	top: 0;
	margin-left: 1px;
}

.parent li:hover {
    color: #ed1c24;
}

.expand {
	font-size: 14px;
	float: right;
	margin-right: 5px;
}

.carousel-inner{
    z-index: -99999999;
}

.carousel-indicators {
    position: absolute;
    right: -150px;
    bottom: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
  }


  .menu-button {
    position: absolute;
    z-index: 900;
    right: 10%;
    top: 2%;
    cursor: pointer;
    transition: 0.9s;
  }
  .menu-button-line {
    height: 5px;
    width: 40px;
    margin-bottom: 5px;
    background: #000;
    transition: 0.9s;
  }
  /*menu get crossed when clicked*/

  .menu-button.close {
    transform: rotate(180deg);
    transition: 0.9s;
  }
  .menu-button.close .menu-button-line:nth-child(1) {
    background: #04327F;
  
    
    transform: rotate(45deg) translate(5px, 3px);
    transition: 1.2s;
  }
  .menu-button.close .menu-button-line:nth-child(2) {
    opacity: 0;
  }
  .menu-button.close .menu-button-line:nth-child(3) {
    background: #073254;
    transform: rotate(-45deg) translate(8px, -6px);
    transition: 1.2s;
  }
  

  /*===menu===*/
  .menu {
    
    top: 0;
    width: 100%;
    opacity: 1;
    visibility: hidden;
    transition:1.2s;
  }
  .menu a{
    display:inline-flex;
    padding:10px;
    color:#005aab;
    font-size: 15px !important;
    text-transform: uppercase;

  }
  .menu ul li{
    border-bottom: 1px solid #bfcee7;
  }
  .menu.show {
    visibility: visible;  
  }

  .banner-title{
    font-size: 50px !important;
    text-align: center;
    line-height: 1.5;
        text-align: left !important;
  }
  
  .menu-nav {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    border:1px solid #777;
    justify-content: center;
    float: left;
    width: 100%;
    margin-top:2rem;
    overflow: hidden;
  }
  /*==nav part==*/

  .menu-nav {
    margin: 0;
    padding: 0;
    background:#F2F2F2;
    
    list-style: none;
    transform: translate3d(0,-100%, 0);
    transition: 1.2s;
  }
  .menu-nav.show {
    transform: translate3d(0, 0, 0);
  }
  /*branding side*/

  
  .menu-branding {
    margin: 0;
    padding: 0;

    transition: 1.2s;
  }
  .menu-branding.show {
    transform: translate3d(0, 0, 0);
  }
   
  .menu.show ul{
  
  }

  
  .nav-item.show {
    align-items:center;
    display:inline;
    padding:10x;
    margin:0;
  }
  .nav-item a:hover {
    color: #04327F;
    font-size:1.6rem;
    transition: 0.4s;
  }
  
  .dropdown-menu{
    width: 110px;
    height: 110px;
    overflow: scroll;
  }
  
  @media only screen and (max-width: 991px) {
    .menu-button {
    position: absolute;
    z-index: 3;
    top: 36%;
    right: 5%;
    left:50%        
    cursor: pointer;
    transition: 0.9s;
  }
    .menu{
      width: 94%;
      position:absolute;
      right:10px;
      top:74%;
      z-index: 999;
      overflow: hidden;  
    }
    
    .menu ul li{
            width:100%;
             display:block;
            text-align:left;
  }
    .menu-nav {

    transform: translate3d(150%,0, 0);
    transition: 1.2s;
  }
  .menu-nav.show {
    transform: translate3d(0, 0, 0); 
    
    
    }

    .menu a{

    font-size:.9rem;

  }    
    .nav-item a:hover {
    font-size:1.1rem;

  }

    
  }

  .pro {
    width: 100%;
    height: auto;
    background: #f2f2f2;

}

.pro1 {
    width: 100%;
    height: auto;
    transition: 0.3s;
}

.pro1:hover {
    transform: translate(1vw, 0);
}

.pro1 figure {
    position: relative;

}

.pro1 figure img {
    border-radius: 20px;
}

.pro1 figure figcaption {
    position: absolute;
    top: 50%;
    left: 5%;
}

.pro1 figure figcaption h3 {
    color: #fff;
    font-size: 36px;
    text-transform: uppercase;
}



.pro1-logo {
   position: absolute;
    width: 9%;
    height: 26%;
    background-color: #fff;
    top: 40%;
    right: -4%;
    border-radius: 50%;
    border: solid 7px #fff;

}
.pro1-logo img{
    width: 50px;
}
.pro1-content a{
        color: #000;
    font-size: 18px;
}


@media(max-width:768px) {
    .pro1-logo {
        right: -3%;
        border: solid 3px #fff;
    }

    .contenty1 {
        margin-left: 0;
    }
}

.pro1-content {
    position: absolute;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    top: 46%;
    right: 8%;
    padding: 10px 25px;
    background-color: #fff;
    border-radius: 50px;
  }
  

  #ourclients {
    display: block;
    margin-left: auto;
    margin-right: auto;
    background:#f9f9f9;
    padding-bottom:30px;
    height:150px;
  }
  #ourclients .clients-wrap {
    display: block;
    width: 95%;
    margin: 0 auto;
    overflow: hidden;
  }
  #ourclients .clients-wrap ul {
    display: block;
    list-style: none;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  #ourclients .clients-wrap ul li {
    display: block;
    float: left;
    position: relative;
    width: 220px;
    height: 100px;
    line-height: 100px;
    text-align: center;
  }
  #ourclients .clients-wrap ul li img {
    vertical-align: middle;
    max-width: 100%;
    width:150px;
    max-height: 100%;
    -webkit-transition: 0 linear left;
    -moz-transition: 0 linear left;
    transition: 0 linear left;
  }
  #ourclients h3{
  border-bottom:2px solid #3399ff;
  width:150px;
  padding:10px;
  }


/*--------my-css------*/
.header {
  position: sticky;
    z-index: 1000;
  width: 100%; 
   background: rgb(238 245 251 / 43%);
/* background: rgba(34,34,34,0.25);*/
  /*  background: rgb(4 4 4 / 30%);*/
   padding: 2px 0px 0 0;
    -webkit-transition: all ease-out .5s;
  -moz-transition: all ease-out .5s;
  -o-transition: all ease-out .5s;
  transition: all ease-out .5s;
}

.header.active {
background-color: rgb(255 255 255);
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
height: 100px;


}

.header .parent a{
    color: #161616;
        letter-spacing: .2px;
}
.active .parent a{
    color: #000
}

/*--------right-scroll-----*/
/*.longEnough {

    max-height: 420px;
    width: 350px;
    overflow: auto;
    overflow-x: hidden;
}*/

.contenty1{
     margin-left: 21vw;
    margin-bottom: 50px;
    position: sticky;
    top: 17vw;
    z-index: 1;
    padding: 55px 55px;
    border-radius: 20px;
    margin-right: 60px;    
    background: url('../images/our_services_box_image.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.contenty1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0.40;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}
.contenty1 h2{
    font-size: 38px;
    text-transform: uppercase;
}
.box-text{

    margin-top: 50px;
}


/*.image_box::before{
    background: url('../images/our_services_box_image.jpg');
    content: "";
    width: 349px;
    height: 486px;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;     
    opacity: 15%;
    z-index: 1;
}
.image_box::after {
    content: "";
    width: 349px;
    height: 486px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--e-global-color-strong-red);
    border-radius: 30px;
}
.image_box_content {
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
    padding: 70px 46px;
}*/
/*-----navbar-----*/
.navbar-brand{
        margin-right: 0rem;
}
.navbar-brand img{
    max-width: 100%;
}
.pro {
    width: 100%;
    height: auto;
    background: #d2e2f0;
    position: relative;
        padding: 0px 55px;
}

.pro::before{
        background: url(../images/ser-left-bg.jpg);
    content: "";
    width: 38.5%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 80%;
    background-attachment: fixed;
}

/*------top-header------*/
.top-mail{
margin-left: 36px;
}

.upper-header{
       padding: 5px 0px;
    background: #005aab;
    height: 35px;
}


.active .upper-header{
    display: none;
    visibility: hidden !important;
}

.top-detail ul {
        float: left;
    display: flex;
}
.top-detail ul li i{
           font-size: 18px;
    color: #fff;
}

.top-detail ul li a{
     font-size: 18px;
    font-weight: normal;
    color: #fff;
    letter-spacing: .8px;
    margin-left: 10px;
}
.top-detail ul li a:hover{
    color: #bee0ff;
}


.top-socials ul li{
    float: right;
    padding: 0px 20px;
}
.top-socials ul li i{
    color: #fff;
    cursor: pointer;
}


/*------new-clients-logo-section------*/
.cl-logo ul{
    display: flex
}

.cl-logo ul li{
margin: 16px 23px;
}
.cl-logo ul li img{
    width: 100%;
    animation: mover 2s infinite alternate;
}

/*------footer-----*/

.foot-3{
    column-count: 2;
}

.foot-1 img{
    margin-right: 10px;
}




/*--------breadscrumbs-------*/
.breadscrumbs{
    position: relative;
}
.breadscrumbs img{
    height: 292px;
}

.breadscrumbs-title{
    position: absolute;
    /*z-index: 1111111;*/
    top: 32%;
    left: 0;
    text-align: center;
    width: 100%;
}

.breadscrumbs-title h2{
    font-size: 55px;
    color: #fff;
    text-transform: uppercase;
}
.breadscrumbs-list{
    display: inline-flex;
    text-align: center;
    margin-top: 20px;
    padding-left: 0px;
}

.breadscrumbs-list li a{
    font-size: 20px;
    color: #fff;
}
.breadscrumbs-list li a:hover{
    color: #ed1c24;
}
.breadscrumbs-list li a.activee{
    color: #ed1c24;
    margin-left: 7px;
 }


/*-----inner-pages-sidebar-----*/


.sidebar .widget-title,.sidebar h4{
    border-radius: 20px 20px 0px 0px;
    background: #005aab;
    /*background: linear-gradient(1deg, #990909, #545454);*/
    color: #fff !important;
    text-align: center;
    font-size: 32px;
    padding: 20px 12px;
    color: #fff;
    margin-bottom: 0px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 600;
}

.sidebar .widget-categories ul li{
        padding: 12px 15px;
   background: #005aab;
        /*background: linear-gradient(352deg, #ff464d, #141212);*/

}
.sidebar .widget-categories ul li:last-child{
    border-radius: 0px 0px 20px 20px;
}
.sidebar .widget-categories ul li:hover,.sidebar .widget-categories ul li.activee{
   background: #ed1c24;
   /* background: linear-gradient(45deg, #005aab, #cbe7ff);*/
}
.sidebar .widget-categories ul li a{
       font-size: 18px;
    color: #FFf !important;
    font-weight: normal;
    transition: 0.5s ease-in-out;
}
.sidebar .widget-categories ul li a:hover{
    padding-left: 22px;
}
.sidebar .post-thumbnail-entry, .sidebar .widget-categories ul li {
    border-bottom: 1px solid #ffffff52 !important;
}
/*------inner-pages-tables-----*/

table, th, td {
border: 1px solid #6a6a6a;
    border-collapse: collapse;
}
tr:nth-child(even) {
  background-color: #bcdfff59;
}

table td, table th{
    padding: 10px;
    font-size: 16px;
    color: #000;
}

/*table td{
    width: 100%;
}*/

table th{
    color: #005aab;
    font-size: 18px;
}

/*-------inner-pages-contents-----*/

.inner-product-content h2{
      font-size: 46px;
    margin-bottom: 32px;
    color: #ed1c24;
    text-transform: uppercase;
}

.inner-product-content h3{
    font-size: 35px;
    margin-bottom: 25px;
    margin-top: 32px;
    color: #000;
text-transform: uppercase;
}

.acd{
margin-top: 55px;
}
.accordian-section{
  background: url(../images/specification-bg.jpg) center no-repeat;
    /*position: unset !important;*/
    position: relative;
    text-align: unset;
    padding: 0px 30px 45px;
    /*border-radius: 35px;*/
    margin-top: 55px;
        border: 2px solid #edd9d9;
        background-size: cover;
        background-attachment: fixed;
        overflow: hidden;
}
.accordian-section::before{
        position: absolute;
    content: '';
    background: #0008;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
}
.accordian-section .accordion-card button.btn.btn-link {
    color: var(--e-global-color-accent);
    background: var(--e-global-color-white);
    border-radius: 20px;
}
.phone {
  background-color: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 36px;
  position: absolute;
  cursor: pointer;
}

.cta {
       font-size: 25px;
    text-transform: uppercase;
    height: 80px;
    width: 320px;
    color: white;
    z-index: 1;
    transition: 1.2s;
   background: linear-gradient(to right bottom, #005aab, #70bbff);
}

.phone.number {
    font-size: 20px;
  height: 80px;
  width: 318px;
  background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), 
  url(https://images.unsplash.com/photo-1529044728228-9917df974897?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80);
  background-size: cover;
  color: white;
  box-shadow: 3px 3px 30px #aaa;
}
.number a{
    font-size: 20px;
}

.cta i{
    margin-right: 15px;
    font-size: 34px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 5px 8px;
}

.cta:hover {
  transform: translateX(-86%);
  transition: 1.2s;
}


.floating { 
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-top: 5px;
}
 
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }   
}


.side-form{
    background: #ff7278;
    padding: 22px 28px;
        border-radius: 20px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.side-form .btn{
        background: #000;
    color: #fff;
}
.side-form .btn:hover{
    background: #fff;
    color: #000;
}

.side-form-title{
        font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
}


/*-----new-tables-section-----*/
.new-table-sec{
       padding: 55px 121px;
    background: #e0e7ed;
    margin: 55px 0px 0px;
}
/*.new-table-sec{
    margin: 55px 0px;
          padding: 55px 121px;
           background: url(../images/new-table-bg.jpg) center no-repeat;
           background-size: cover;
           width: 100%;
           height: 100%;
           position: relative;
       
}
.new-table-sec::before{
    content: '';
    width: 100%;
    height: 100%;
    background: #0002;
    top: 0;
    left: 0;
    position: absolute;
}*/
.new-table{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.new-table-title{
    text-align: center;
    width: 100%;
}
.new-table-title h2{
    font-size: 38px
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
}

.tab {
  overflow: hidden;
  border: 1px solid #aaa;
  background-color: #f1f1f1;
      width: 100%;
    text-align: center;
    display: inline-flex;
}
.tab button {
  float: left;
  outline: none;
  cursor: pointer;
      padding: 12px 8px;
  font-size: 15px;
  background: #005aab;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid #dbeeff !important;
}
.tab button:hover {
  background-color: #ed1c24;
}
.tab button.active {
      background-color: #ed1c24;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}
.tabcontent {
    display: none;
   padding: 40px 22px 40px 51px;
    border: 1px solid #aaa;
    border-top: none;
        background: #ebebebbf;
}

.new-table h3{
    margin-bottom: 35px;
}

/*-------about-us-page------*/

.abt-pg-img img{
    border: 2px solid #121212;
    padding: 6px;
    

}


/*------contact-us-page------*/
.con-pg-formsec{
    margin: 75px 0px;
}
.con-form-img img{
    height: 655px;
}



/*-------quality-page-------*/
.quality-sec{
    padding: 55px 0px 40px;
}
.inner-page-text h6{
        color: var(--e-global-color-secondary);
    margin-bottom: 8px;
}

.inner-page-text p{
        font-size: 16px;
    text-align: justify;
    letter-spacing: .3px;
    line-height: 31px;
    font-weight: 400;
}

.quality-img .left_shape {
      top: 18%;
    left: -61px;
    z-index: -11;
}

.inner-page-text .right_shape2{
top: 31px;
    right: -41px;
    opacity: .19;
}
.inner-page-text .watermark{
   top: 27%;
    right: -6%;
    z-index: -1;
    opacity: 0.7;
}

/*-------certicates-page-----*/

.certificate-sec{
padding: 65px 0px;
}

.certificates{
margin-top: 35px;
}
.certificates .right_shape{
 animation: mover 1s infinite alternate;
    top: 78%;
    right: 10%;
    z-index: -111111;

}

.certificate-img img{
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 24px;
}



/*------products-industries-section----*/

.pro-industries{
    margin: 55px 0px;
}
.pro-industries-title{
    text-align: center;
    width: 100%;
}
.pro-industries-title h2{
    font-size: 38px
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
}


/*----------new-pro-page-industry-section----*/
.industry-icon-sec .portfolio_box .portfolio_box_content {
    background-color: #ed1c24;
        padding: 22px 10px;  
}
.industry-icon-sec .portfolio_box .portfolio_box_content span{
color: #fff;
font-size: 19px;
}

