@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --brand-color: #C40F2E;
    --arrow-color: rgba(184, 212, 50, 1);
    --white-color: #FFFFFF;
    /* --primary-font: "Poppins", sans-serif; */
    --primary-font: "Inter", sans-serif;
    --black-color: #000000;
    --blue-color: #17295f;


}
body{
    font-family: var(--primary-font) !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Sticky styles after scrolling */
.main-header.sticky {
    position: fixed;
    z-index: 1000;
    padding-bottom: unset;
    padding-top: 5px;
    width: 100%;
    top: -2%;
    box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
}

.main-header.sticky {
    background-color: #fff;
    box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05) !important;
    box-shadow: 0 4px 6px 0 rgba(12, 0, 46, 0.05);
}
/* .main-header.sticky .gt_selector {
  position: relative; 
  top: 18px; 
} */


.navbar {
    /* padding: 0 !important; */
}

.navbar-expand-lg .offcanvas .offcanvas-body {
    justify-content: center !important;
    /* margin-right: 133px; */
    margin-right: 0;
}


.navbar-nav li a,.gt_selector {
    font-family: var(--primary-font) !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 160% !important;
    color: var(--brand-color) !important;
    text-decoration: none !important;
    text-transform: capitalize;
    transition: all .5s !important;
    color: var(--black-color) !important;
} 
.nav-item.g-translater{
    list-style: none;
}
.gt_selector{
    border: unset;
}
/* .gt_selector{
position: relative;
    top: 48px;
    
    right: 247px;
    border: unset;
} */
.dropdown-toggle{
padding-top:unset;
}

.navbar-expand-lg .navbar-nav {
    gap: 10px;
}

.navbar-nav li a:hover {
    color: var(--brand-color) !important;
    font-weight: 500 !important;
    overflow-x: hidden !important;
}

.navbar-toggler i {
    color: black;
    font-size: 28px;
}

.offcanvas-header .btn-close {
    border: 1px solid var(--gray-color);
}



/* ====================== header =============================== */
.logoheader {
    width: 199px;
}

/* ------ headerBtn----- */
.headerBtn svg {
    width: 15px;
    fill: var(--white-color);
    transform: rotate(-45deg);
}

.headerBtn {
/*     background-color: var(--brand-color); */
	border:2px solid var(--brand-color) !important; 
    padding: 8px 20px;
}

.headerBtn a {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #000;
    text-decoration: none;
}

.navbarBtnphone {
    display: none;
}

/* ============= hover btn css ======== */
.headerBtn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border 0.4s ease;
}

.headerBtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0%;
    height: 100%;
    background-color: var(--brand-color) !important;
    z-index: 1;
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.headerBtn:hover::before {
    width: 100%;
}

.headerBtn:hover {
    border: 2px solid var(--brand-color);
    cursor: pointer;
}

.headerBtn a {
    position: relative;
    z-index: 2;
    color: #000;
    text-decoration: none;
    transition: color 0.4s ease;
}

.headerBtn:hover a {
    color: #000;
}

/* ================ nav  hover =================== */
.nav-link {
    position: relative;
    display: inline-block;
    color: #000;
    text-decoration: none;
    z-index: 1;
    padding-bottom: 0;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #000;
    z-index: 0;
}

/* .nav-link:hover::after {
    animation: underline-sweep 0.6s ease-in-out 2;
    background-color: var(--brand-color);
} */

@keyframes underline-sweep {
    0% {
        width: 0;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

.footer_wrapper .link_bx ul li a {
    position: relative;
    /* display: inline-block; */
    color: #000;
    text-decoration: none;
    z-index: 1;
    padding-bottom: 3px;
    overflow: hidden;
    transition: color 0.3s ease, font-weight 0.3s ease;

}

.main-contact a:hover {
    color: var(--brand-color) !important;
    font-weight: 500 !important;
}

.main-contact a {
    transition: color 0.3s ease !important;
}

.link_bx ul li a:hover {
    color: var(--brand-color) !important;
    font-weight: 500 !important;
}

.footer_wrapper .link_bx ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #000;
    z-index: 0;
}

.footer_wrapper .link_bx ul li a:hover::after {
    animation: underline-sweep 0.6s ease-in-out 2;
    background-color: var(--brand-color);
}

.footer_wrapper .footer_cont{
    background: #fff;
    color: #000;
    padding: 10px;
    border-radius: 10px 0 10px;
}

@keyframes underline-sweep {
    0% {
        width: 0;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}

.main-contact a {
    position: relative;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    overflow: hidden;
}

.main-contact a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #000;
    z-index: 0;
    transition: width 0.3s ease;

}

.main-contact a:hover::after {
    width: 100%;
    background-color: var(--brand-color);

}

@keyframes underline-sweep {
    0% {
        width: 0;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0;
        left: 100%;
    }
}


/* =============================== banner psection =============================== */

.bannerSection {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.Homebanner {
    position: relative;
}

.Homebanner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 550px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    z-index: 1;
}

.Homebanner img {
    width: 100%;
    height: 550px;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 0;
}



.Homebanner {
    position: relative;
    overflow: hidden;
    height: 550px;
}

.Homebanner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.Homebanner:hover img {
    transform: scale(1.3);
}

.Homebanner:hover .Homebanner::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

.fullstackdev-banner-info h1{
    font-weight: 700;
    font-size: 34px;
    line-height: 171%;
    color: var(--brand-color);
}
.fullstackdev-banner-info h1 span{
    font-size: 35px;
    color: #000;
}
.feature-box{
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 12px;
    box-shadow: 0 0 2px var(--brand-color);
    border-radius: 2px;
    font-weight: 600;
    color: var(--blue-color);
}
.icon{
    color: var(--brand-color);
    margin-right: 8px;
    font-size: 18px;
}
.banner-btn .banner-btn-1 a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background-color: var(--brand-color);
    border: 1px solid var(--blue-color);
    border-radius: 2px;
    padding: 10px 50px;
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
    transition: .5s all;
    text-decoration: none;
    color: #fff;
}
.banner-btn .banner-btn-1 a:hover{
    border: 1px solid var(--brand-color);
    color: #fff;
    background-color: var(--blue-color);
}

.fullstackdev-banner-form{
     min-height: 374px;
    box-shadow: 0 0 10px var(--brand-color);
    padding: 20px 20px 18px;
    border-radius: 2px;
    background: #fefefe;
}
.main-fullstackdev-banner-form input{
     border: none;
    height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 0 !important;
    background: #fff !important;
}
.form-control:focus{
    box-shadow: none !important;
}
.fullstackdev-banner-btn .wpcf7-submit{
    background-color: var(--brand-color) !important;
    color: #fff;
    text-align: center;
    margin-top:17px;
    border-radius: 2px;
    transition: all .5s ease
}
.fullstackdev-banner-btn p{
    margin: 0 !important;
}


.contentBanner {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    transform: translate(0%, 0%);
}

.bannerSection .container {
    position: relative !important;
}

.contentBanner .row {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    bottom: 284px;
    position: relative;
}

.contentBanner h1,
.ourserviceContent h2 {
    margin-bottom: 1rem;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 42.62px;
    line-height: 124%;
    font-family: var(--primary-font);
    color: var(--white-color);
}
.ourserviceContent h2 {
    color: #000 !important;
}

.contentBanner p,
.ourserviceContent p {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 1.5rem;
    color: #000;
}

.ourService.home_wrap h2{
    color: var(--white-color) !important;
}
.bannerBtn {
    max-width: max-content;
}
.ourserviceContent .headerBtn a{
	color:#fff;
}
/* ============================= Empowering Global Trade, One Commodity at a Time      ================= */

.empoweringsec {
    padding: 50px 0px 180px 0px;
}
.empoweringsec{
    padding-bottom: 130px;
}

.empoweringsec h2,
.product-section h2,
.why-choose-section h2,
.why-choose-section h2,
.titleblog {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 34sspx;
    line-height: 124%;
    text-align: center;
    color: var(--blue-color);
}

.titleblog {
    text-align: left !important;
}

.ourserviceimg img {
    object-fit: cover;
    width: 100%;

}

.ourserviceimg {
    width: 521px;
    height: 458px;
    overflow: hidden;
    padding-left: 49px;
}

.ourserviceContent p {
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 15px !important;
    line-height: 27px;
}
.ourService.home_wrap .ourserviceContent p{
	color:#fff;
	font-size:18px !important;
	font-weight:400;
	text-align:justify;
	hyphens: auto;
	line-height: 1.7;
	 word-spacing: -0.9px;
}

.empoweringsecp {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: var(--black-color);
    padding-top: 10px;
}

.headingemp {
    max-width: 1150px;
    margin: 0 auto;
}

.cardempowering {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.cardempoeringcon {
    max-width: 1150px;
    margin: 0 auto !important;
}

.cardempowering img {
    background-color: var(--brand-color);
    padding: 10px;
    border-radius: 50px;

}

.cardempowering img {
    background-color: var(--brand-color);
    padding: 10px;
    border-radius: 50px;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        filter 0.4s ease,
        border 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.cardempowering img:hover {
    transform: scale(1.15) rotate(3deg);
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.8);
    /* red glow */
    filter: brightness(1.15) saturate(1.2);
    border: 2px solid #ff4d4d;
    /* match with the glow */
}

.cardempowering p {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: var(--black-color);
    margin: 0;
}

.empoweringbtn {
    margin: 0 auto;
    margin-top: 50px;
}

.headingemp {
    padding-bottom: 0px;
}


/* ====================== our service section ======================= */
.ourService {
    background-color: #0F1923;
    padding-bottom: 50px;
    position: relative;
    z-index: 10;
}

.servicecardimg img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.Headingcard {
    position: relative;
    bottom: 90px;
}

.GlobalBox p {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: var(--black-color);
}

.DiscoveMorebtn a {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: solid;
    color: var(--black-color) !important;

}

.DiscoveMorebtn a:hover,
.DiscoveMorebtn:hover svg {
    color: var(--brand-color) !important;
    fill: var(--brand-color);
}


.DiscoveMorebtn {
    align-items: center;
    text-align: center;
}

.GlobalBox {
    background-color: var(--white-color);
    padding: 20px;
    border: 3px solid transparent;
    transition: border 0.9s ease;
}

.servicec:hover .GlobalBox {
    border: 3px solid var(--brand-color);
}

.iconcircle {
    position: absolute;
    top: 15%;
    z-index: -1;
    text-align: center;
}

.iconcircle img {
    width: 90%;
}

.servicecardimg {
    position: relative;
    overflow: hidden;
}

.servicecardimg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.4);
    transition: width 0.4s ease;
    z-index: 1;
}

.servicec:hover .servicecardimg::after {
    width: 100%;
}

.servicecardimg img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 0;
}


/* ======================= product section ======================= */
.pruductbtn {
    max-width: max-content;
}

.ProductBtn {
    margin: 0 auto;
}

.product-section {
    padding:30px 20px;
    text-align: center;
    padding-bottom: 0px;
}

/* .card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
} */
 .card-container{
    background: #000;
    padding: 10px;
    border-radius: 10px 0 10px;
    padding-bottom: 20px;
 }

.productsIcon img {
    width: 70px !important;
    max-width: 70px !important;
    margin: 0 auto !important;
}

.owl-carousel .owl-stage-outer {
    padding: 20px 0px !important;
}

.productsIcon {
    text-align: center;
}

.product-card {
    position: relative;
    /* width: 250px; */
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    margin:0px;
    /* margin: 0 auto; */
    /* box-shadow: 7px 8px 8px var(--brand-color); */
    border-radius: 10px 0 10px;
}

.product-card:hover {
    transform: scale(1.03);
}

.product-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 1px solid #fff;
    border-radius: 10px 0 10px ;
}

.product-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-hover-content {
    opacity: 1;
    border: 1px solid var(--brand-color);
}

.product-hover-content h3 {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    color: var(--black-color);
    padding-top: 10px;
}

.product-hover-content p {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    color: var(--black-color);
}


/* 

.owl-carousel .owl-item img {
    width: unset !important;
} */

/* =========================== why choose section =============== */

.why-choose-section .section-description {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    color: var(--black-color);
}

/* Card Styling */
.choose-card {
    border: 1px solid var(--brand-color);
    padding: 30px 20px;
    transition: box-shadow 0.3s ease;
}

.choose-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.choose-card .icon-wrap {
    width: 81px;
    height: 81px;
    background-color: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}


.choosebtn {
    max-width: max-content;
    text-align: center;
    margin: 0 auto;
}

.choose-card .icon-wrap img {
    width: 50px;
    height: 50px;
}

.choose-card h6 {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 23px;
    line-height: 130%;
    text-align: center;
    color: var(--black-color);
    margin-bottom: 10px;
}

.choose-card p {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: var(--black-color);
}

.choose-card {
    position: relative;
    overflow: hidden;
}

.choose-card:hover p,
.choose-card:hover h6 {
    color: var(--white-color) !important;
}

.choose-card p,
.choose-card h6 {
    transition: color 0.5s ease;
}

.icon-wrap img {
    transition: border 0.5s ease, background-color 0.5s ease;
}

.choose-card:hover .icon-wrap {
    border: 2px solid var(--white-color);
    background-color: var(--white-color);
}

.icon-wrap img {
    transition: border 0.5s ease, filter 0.5s ease;
}

.choose-card:hover .icon-wrap img {
    filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(0deg) contrast(100%) invert(70%) saturate(500%);
}

.choose-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: rgba(255, 0, 0, 0.4);
    transition: height 0.5s ease;
    z-index: 1;
}

.choose-card:hover::after {
    height: 100%;
}

.choose-card * {
    position: relative;
    z-index: 2;
}


/* ====================== testimonials ================= */
.TestimonialsSection {
    background-color: #0F1923;
    padding: 30px 0;
    position: relative;
    /* height: 600px; */
/*     height: 522px; */
}

.why-choose-section {
    padding-bottom: 50px;
}

.ticmg1 {
    position: absolute;
    left: 0;
    top: 33%;
    width: 12%;
    display: none;

}

.ticon2 {
    position: absolute;
    right: 0;
    top: 25%;
    width: 10%;
    display: none;
}

.headingtestimonials h3 {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 32px;
    line-height: 124%;
    color: var(--white-color);
}

.headingtestimonials p {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 25.61px;
    line-height: 124%;
    color: var(--white-color);
}

/* .containerT {
    max-width: 900px;
    margin: 0 auto;
} */

.imgtestimonials {
    height: 500px;
    overflow: hidden;
    width: 100%;
}

.imgtestimonials img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.testimoalsContents h2 {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    color: var(--white-color);
}

.testimoalsContents img {
    width: 100% !important;
}

.testimoalsContents h3 {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 20.91px;
    line-height: 100%;
    color: var(--white-color);
    padding: 10px;
}

.testimoalsContents p {
    font-family: var(--primary-font);
    font-weight: 600;
    font-style: italic;
    font-size: 14px;
    line-height: 150%;
    color: var(--white-color);
    padding-top: 30px;
}

.TestimonilaCon .testimoalsContents img {
    width: unset !important;
}
/* .TestimonialsSection .testimonial-item{
	height:350px;
} */



.section-stats {
    /* padding: 160px 0px 80px 0px; */
/*      padding: 64px 0px 80px 0px; */
	padding: 40px 0px 40px 0px;
}

.happyIcon {
    width: 60px;
    height: 60px;
    background-color: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.happyIcon img {
    height: 30px;
    width: 30px;
}

.stat-box {
    border: 1px solid var(--brand-color);
    padding: 20px 20px 8px 20px;
}

.stat-box h3 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 42.5px;
    line-height: 124%;
    color: var(--black-color);
    text-align: center;
    margin: 0;
    transition: color 0.5s ease;

}

.stat-box p {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: var(--black-color);
    transition: color 0.5s ease;

}

.section-highlight {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.section-highlight .section-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.section-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.section-highlight .overlay-content {
    position: relative;
    z-index: 3;
}

.overlay-content h2 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 40px;
    line-height: 124%;
    text-align: center;
    color: var(--white-color);
    transition: color 0.5s ease;

}

.stat-box {
    position: relative;
    overflow: hidden;
}

.stat-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: rgba(255, 0, 0, 0.4);
    transition: height 0.5s ease, width 0.5s ease;
    z-index: 1;
}

.stat-box:hover::after {
    height: 100%;
    width: 100%;
}

.stat-box * {
    position: relative;
    z-index: 2;
}

.stat-box:hover h3,
.stat-box:hover p {
    color: var(--white-color);
}

.happyIcon img {
    transition: border 0.5s ease, background-color 0.5s ease;

}

.stat-box:hover .happyIcon img {
    filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(0deg) contrast(100%) invert(70%) saturate(500%);

}

.stat-box:hover .happyIcon {
    border: 2px solid var(--white-color);
    background-color: var(--white-color);
}


/* ==================== our news section ================ */

/* Scoped News Section Styling */
.latest-news-section {
    background-color: #f8f9fa;
}

.latest-news-section h2 {
    font-weight: 700;
    font-size: 2rem;
    color: #0C1D51;
}

.latest-news-section .card {
    border: none;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.latest-news-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.latest-news-section .card-img-top {
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.latest-news-section .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Button Styling */
.latest-news-section .btn-danger {
    background-color: var(--brand-color);
    border: none;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.latest-news-section .btn-danger:hover {
    background-color: var(--brand-color);
}

/* Footer-section-start  */

.footer_wrapper {
    background: var(--black-color);
	padding-bottom:1rem !important;
	padding-top:1.6rem !important;
}

.footer_wrapper .footer_cont .logo_wrap {
    background: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_wrapper .footer_cont .logo_wrap img {
    width: 151px;
}

.footer_wrapper .footer_cont p {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 15px;
    color: #000;
    margin-top: 10px;
    text-align: center;
}

.footer_wrapper .link_bx h5 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 19px;
    color: var(--white-color);
}

.footer_wrapper .link_bx {
    padding-left: 20px;
}

.footer_wrapper .link_bx ul {
    padding-left: 20px;
}

.footer_wrapper .link_bx ul li {
    color: var(--white-color);
}

.footer_wrapper .link_bx ul li a {
    text-decoration: none;
    color: var(--white-color);
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
    font-family: var(--primary-font);
}

.footer_wrapper .main-contact {
    display: flex;
    align-items: start;
    margin-bottom: 10px
}

.footer_wrapper .main-contact span i {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff0;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    line-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all;
    font-size: 10px;
}

.footer_wrapper .main-contact a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: 0.5s all;
    font-family: var(--white-color);
}

.link_bx.contatct_bx {
    padding: 0;
}

.link_bx.service_bx {
    padding: 0;
}

.footer_wrapper .social_icon {
    display: flex;
    gap: 10px;
}

.footer_wrapper .social_icon a {
    color: var(--white-color);
    width: 30px;
    height: 30px;
    border: 1px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all .5s;
    font-size: 14px;
}

.footer_wrapper .social_icon a:hover,
.main-contact span i:hover {
    background-color: var(--white-color);
    outline: 2px solid #000;
    color: var(--blue-color)
}

.main-contact span i {

    transition: background-color 0.3s, color 0.3s, outline 0.3s ease;/
}




.footer_wrapper .Elem {
    position: absolute;
    left: 0;
    top: 0;
}

.footer_wrapper .Elem img {
    width: 112px;
}

.footer_wrapper .container .row {
    position: relative;
    z-index: 99;
}

.footer_wrapper .Elem2 {
    position: absolute;
    right: 0;
    top: 40px;
}

.bottom_footer {
    border-top: 1px solid #fff;
    padding: 20px 0;
    background: var(--blue-color);
}

.bottom_footer p {
    margin: 0;
    color: #fff;
    font-family: var(--primary-font);
}

.bottom_footer p a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--primary-font);
}


/* Footer-section-end  */


/* Blog-sec-start */


.professional_service {
    padding-top: 40px;
    padding-bottom:40px
}

.professional_service .main_heading h2 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 30px;
    text-align: center;
}



.professional_service .custom-card {
    width: 100%;
    border: 1px solid #ddd;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px;
    background-color: #fff;
	position:relative;
	height: 520px !important;
	transition:all .3s;
}
.professional_service .custom-card .btn_wrapper{
	position: absolute;
    bottom: 13px;
}
/* .professional_service .custom-card .btn_wrapper{
	position: absolute;
    bottom: 24px;
} */

.professional_service .custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgb(0 0 0 / .15)
}

.professional_service .card-img {
    width: 100%;
    height: auto;
    display: block
}

.professional_service .card-img {
    height: 245px;
    object-fit: cover
}

.professional_service .custom-card-content {
    padding: 20px;
    padding-top: 27px
}

.professional_service .custom-card-title {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--blue-color);
    font-family: var(--primary-font);
}

.professional_service p {
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
    font-family: var(--primary-font);
}

.professional_service .custom-card-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700
}

.professional_service .custom-card-link:hover {
    color: var(--hover-color)
}

.professional_service .custom-card-btn a {
    display: inline-block;
    padding: 12px 30px;
    background: var(--brand-color);
    color: var(--white-color);
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    outline: 1px solid var(--secondary-color)
}

.professional_service .custom-card-btn a:hover {
    background: var(--blue-color);
    color: #fff;
    transform: scale(1.05)
}

.professional_service .card-icon {
    position: absolute;
    bottom: 6px;
    background: #000;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgb(0 0 0 / .1);
    transition: transform 0.3s ease;
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    top: 97%;
    transform: translate(-50%, -50%);
    border: 3px solid #fff
}

.professional_service .card-icon img {
    width: 40px
}

.professional_service .custom-card:hover .card-icon img {
    transform: rotate(360deg)
}


.main-header .dropdown.arrow-top {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, 10%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: #fff;
    padding: 0px;
    z-index: 99;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s linear;
    list-style: none;
    max-height: 350px;
    overflow-y: scroll;
}

/* .navbar-nav>li:nth-child(3)>.dropdown.arrow-top {
    top: 109%;
} */

.nav-item.dropdown:hover>.dropdown.arrow-top {
    opacity: 1;
    visibility: visible;
}

.main-header .dropdown.arrow-top li {
    border-bottom: 1px solid #000;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin: 0 !important;
    padding: 3px 3px;
}


.nav-item.dropdown {
    display: flex;
    align-items: center;
}

.nav-item.dropdown i {
    padding-top: 8px;
    font-size: 13px;
}


/* ============================== About Us banner ==============================*/


/* About Us Banner Section */
.aboutBanner {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    overflow: hidden;
}

/* Background Image */
.aboutbannerImg {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.aboutbannerImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutbannerImg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.bannerContent {
    position: relative;
    z-index: 2;
}

.bannerContent .title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: var(--primary-font);
    color: var(--white-color);
}

.breadcrumbs-custom-path {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.breadcrumbs-custom-path li {
    display: inline-block;
    color: var(--white-color);
}

.breadcrumbs-custom-path li a {
    color: var(--white-color);
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.breadcrumbs-custom-path li a:hover {
    text-decoration: underline;
}


/* ================ about us page =============== */

.aboutusSection {
    /* background-color: #0F1923; */
    /* background: #798a9b; */
    overflow: hidden;
    padding: 40px 0;
    margin: 0px 0;
}

.aboutimg img {
    width: 100%;
}

.ourserviceContent h3 {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 25.61px;
    line-height: 124%;
    color: #000;
}

.leftabout {
    border-top: 1px solid var(--white-color);
    padding-top: 15px;
	align-items:center;
}

.aboutimg {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.aboutimg::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.4);
    transition: left 0.5s ease;
    pointer-events: none;
}

/* .aboutimg:hover::after {
    left: 0;
} */

.aboutimg img {
    display: block;
    width: 100%;
    height: auto;
	border-radius:10px;
}

.highlightSection,
.bookNow {
    /* background-color: var(--brand-color); */
    margin-bottom: 40px;
    background: #2a2e3be0;
}


.highlightSection {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.iconhghlight i {
    display: block;

    position: relative;
    margin: 0 auto;
}

.iconhghlight i {
    font-size: 50px;
    color: #A7704E;

}

.iconhghlight {
    fill: #A7704E;
    color: #A7704E;
    text-align: center;
    background-color: transparent;
    color: #69727d;
    /* padding: 20px ; */
    border-radius: 50px;
    border: 3px solid #A7704E;
    padding: 20px;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.highlightCard {
    background-color: #FFF;
    margin: 0 0 0 0;
    padding: 20px 20px 20px 20px;
    border-radius: 20px 20px 20px 20px;
	box-shadow: rgba(0, 0, 0, 50) 0px 5px 15px;
	transition:all .3s;
}


.contact-us-section {
    margin-top: 0px;
}

.highlightCard:hover {
	background-color: #EBD6C4;
}




.highlightCard h3 {
    /* font-family: "Poppins", Sans-serif; */
    font-size: 22px;
    font-weight: 500;
    padding-top: 20px;
    padding-bottom: 10px;
    color: #A7704E;
}

.highlightCard p {
    color: #000;
    /* font-family: "Poppins", Sans-serif; */
    font-size: 14px;
    font-weight: 400;
}

.iconhghlight2 svg {
    position: relative;
    top: 10px;
}


/* ============================ blog page start ==================== */


:root {
    --color: #3c3163;
    --transition-time: 0.5s;
}

.blogSection {
    padding: 20px 0px 60px 0px;
}

.cards-wrapper img {
    width: 100%;
    height: 250px;
    transition: all var(--transition-time);
    object-fit: cover;
    border-radius: 10px 0 10px;
    border: 2px solid #fff;
}

.cards-wrapper .card {
    font-family: 'Heebo', sans-serif;
    --bg-filter-opacity: 0.5;
    background-image: linear-gradient(rgba(0, 0, 0, var(--bg-filter-opacity)),
            rgba(0, 0, 0, var(--bg-filter-opacity))), var(--bg-img);

    font-size: 1.5em;
    color: white;
    border-radius: 0px;
    padding: 15px;
    display: flex;
    background-size: cover;
    background-position: center;
    transition: all var(--transition-time);
    position: relative;
    overflow: hidden;
    border: 4px solid var(--blue-color);
    text-decoration: none;
    background-color: var(--brand-color);
    /* background: var(--blue-color); */
}

.cards-wrapper .card:hover {
    transform: rotate(0);
    color: var(--color);
    border-radius: 10px;
}

.cards-wrapper .cards:hover {
    transform: unset !important;
    color: unset !important;
    border-radius: unset !important;
}

.cards-wrapper .cards:hover img {
    border-radius: unset !important;
}

.cards-wrapper .card:hover img {
    border-radius: 10px;
}

.cards-wrapper .card h2 {
    margin: 0;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--white-color);
    font-family: var(--primary-font);
    padding: 10px 0;

}

.cards-wrapper .cards h2 {
    padding-top: 0 !important;
}


.cards-wrapper .card .tags {
    display: flex;
}

.cards-wrapper {
    margin-top: 60px;
}

.cards-wrapper .card .tags .tag {
    background: rgba(255, 255, 255, 0.5);
    padding: 0px 10px;
    transition: all var(--transition-time);
    color: var(--white-color);
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;
}


.cards-wrapper .card:hover .tags .tag {
    background: var(--color);
    color: white;
}

.cards-wrapper .card .date {
    display: flex;
    justify-content: space-between;
}

.cards-wrapper .card .date h3 {
    font-weight: 400;
    font-size: 18px;
    color: var(--white-color);
    font-family: var(--primary-font);
    padding-top: 25px;
    padding-bottom: 0;
}

.cards-wrapper .card:before,
.cards-wrapper .card:after {
    content: '';
    transform: scale(0);
    transform-origin: top left;
    border-radius: 50%;
    position: absolute;
    left: -50%;
    top: -50%;
    z-index: -5;
    transition: all var(--transition-time);
    transition-timing-function: ease-in-out;
}

.cards-wrapper .card:before {
    background: #ddd;
    width: 250%;
    height: 250%;
}

.cards-wrapper .card:after {
    background: white;
    width: 200%;
    height: 200%;
}

.cards-wrapper .card:hover:before,
.cards-wrapper .card:hover:after {
    transform: scale(1);
}


.cards-wrapper .card:hover h3,
.cards-wrapper .card:hover h2 {
    color: var(--primary-color);
}

.headingemp h4 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 24px;
    line-height: 124%;
    color: var(--brand-color);
    text-align: center;
}


/* =========================== service section ========================== */
.servicesec {
    padding: 40px 0 !important;
}

.cards-wrapper .card h3 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--white-color);
    font-family: var(--primary-font);
    padding-bottom: 10px;
}

.serviceSeccard {
    background-color: var(--blue-color);
}

.cards-wrapper .cards {
    border: unset !important;
    padding: 0 !important;
}

.servicecontents {
    padding: 20px;
    text-align: center;
    background: #F4F6FD;
    color: var(--blue-color) !important;
}

.servicebtn div {
    color: var(--white-color);
    text-align: center;
    margin: 0 auto;
    font-size: 18px;
    font-family: var(--primary-color);
    font-weight: 500;
}

.servicebtn:hover div {
    color: var(--blue-color) !important;
    z-index: 100;
}

.cards-wrapper .cards h2,
.cards-wrapper .cards h3 {
    color: var(--blue-color) !important;
}

/* ============================ counterSection ============================= */
.counterSection {
    padding: 60px 0 !important;
}

.imgacoourdian img {
    width: 100%;
}

.service-page-section {
    margin-top: 50px;
    background: var(--brand-color);
    font-family: 'PT Sans Narrow', sans-serif;
    color: #fff;
    padding: 30px 0;
}

.service-page-section h2 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 40px;
    line-height: 124%;
    text-align: center;
    color: var(--white-color);
    padding-bottom: 0px !important;
}


.service-page-section a:hover,
.service-page-section a:focus {
    text-decoration: none !important;
    outline: none !important;
}

.service-page-section .section-title {
    color: white;
    text-transform: uppercase;
}

.service-page-section .panel-group .panel {
    background-color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 10px;
    margin-bottom: 11px;
}

.service-page-section .panel .panel-heading {
    padding: 0;
    border-radius: 10px;
    border: none;
}

.service-page-section .panel-heading a {
    color: var(--blue-color) !important;
    display: block;
    border: none;
    padding: 20px 35px 20px;
    font-size: 20px;
    background-color: #fff;
    font-weight: 600;
    position: relative;
    box-shadow: none;
    transition: all 0.1s ease 0s;
}

.service-page-section .panel-heading a:after,
.service-page-section .panel-heading a.collapsed:after {
    content: "\f068";
    font-family: fontawesome;
    position: absolute;
    left: -20px;
    top: 10px;
    color: var(--blue-color) !important;
    background-color: #fff;
    border: 5px solid #fff;
    font-size: 15px;
    width: 40px;
    height: 40px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
}

.panel-body p {
    color: #000;
    font-weight: 500 !important;
    font-size: 16px;
    font-family: var(--primary-font);
}

.panel-title a {
    font-family: var(--primary-font);
}

.service-page-section .panel-heading:hover a:after,
.service-page-section .panel-heading:hover a.collapsed:after {
    transform: rotate(360deg);
}

.service-page-section .panel-heading a.collapsed:after {
    content: "\f067";
}

.service-page-section .panel-body {
    background-color: #fbf8f8;
    color: var(--black-color);
    line-height: 25px;
    padding: 10px 25px 1px 35px;
    font-size: 14px;
    font-weight: 500 !important;
}

.service-page-section .loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #Fff;
    animation: loader 4s infinite ease;
}

.slidetop {
    text-align: right;
    position: relative;
    top: 40px;
    right: -27px;
}

.service-page-section .loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 4s infinite ease-in;
}

.empoweringseserc {
    padding-bottom: unset !important;
}

.accourdiantitile {
    color: var(--blue-color) !important;
}

.text-left h2,
.text-left p {
    text-align: left !important;
}

@keyframes loader {

    0%,
    50% {
        transform: rotate(0deg);
    }

    25%,
    75% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-inner {

    0%,
    100% {
        height: 0%;
    }

    50%,
    75% {
        height: 100%;
    }
}


/* ======================= contact us section ================ */

.contact-us-section {
    position: relative;
    z-index: 3;
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* background-image: url(https://images.pexels.com/photos/325185/pexels-photo-325185.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940); */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background: #000;
}

/* .contact-us-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
} */

.contact-us-section>* {
    position: relative;
    z-index: 2;
}


/* .contact-us-section .container {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
} */

.contact-us-section .section-header {
    margin-bottom: 50px;
    text-align: center;
}

.contact-us-section .section-header h2 {
    color: #fff;
    font-weight: bold;
    font-size: 3em;
    margin-bottom: 20px;
}
.contact-us-section .section-header h2 span{
    color: var(--brand-color);
}

.contact-us-section .section-header p {
    color: #fff;
    font-size: 18px;
    font-family: var(--primary-font);
    font-weight: 500;
    padding: 0 71px;
}

.contact-us-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* .contact-us-section .contact-info {
    width: 50%;
} */

.contact-us-section .contact-info-item {
    display: flex;
    margin-bottom: 30px;
    /* border: 1px solid var(--light-red-bg); */
    padding: 15px;
    border-radius: 10px 0 10px;
    box-shadow: 0 0 10px var(--brand-color);
}

.contact-us-section .contact-info-icon {
    height: 70px !important;
    width: 70px !important;
    background-color: #fff;
    text-align: center;
    border-radius: 50%;
    transition: background 0.4s ease-out;

}

.contact-info-item:hover .contact-info-icon {
    background: var(--brand-color);
}

.contact-info-icon i {
    transition: color 0.4s ease-out;
}

.contact-info-item:hover .contact-info-icon i {
    color: #fff;

}

.contact-us-section .contact-info-icon i {
    font-size: 30px;
    line-height: 70px;
    width: 70px;
    height: 70px;
}

.contact-us-section .contact-info-content {
    margin-left: 20px;
}

.contact-us-section .contact-info-content h4 {
    color: var(--brand-color);
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 800;
    font-family: var(--primary-font);
}

.contact-us-section .contact-info-content p a {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--primary-font);
}

.contact-us-section .contact-form {
    background-color: #fff;
    padding: 40px;
    width: 45%;
    padding-bottom: 20px;
    padding-top: 20px;
    border-radius: 10px 0 10px;
}


.contact-us-section .contact-form h2 {
    font-weight: 800;
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--blue-color);
    font-family: var(--primary-font);
}

.contact-us-section .contact-form .input-box {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.contact-us-section .contact-form .input-box input,
.contact-us-section .contact-form .input-box textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}

.contact-us-section .contact-form .input-box span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: var(--black-color);
    font-family: var(--primary-font);
    opacity: 0.4;
}

.contact-us-section .contact-form .input-box input:focus~span,
.contact-us-section .contact-form .input-box textarea:focus~span {
    color: var(--brand-color);
    font-size: 12px;
    transform: translateY(-20px);
    opacity: 1;
}

.contact-us-section .contact-form .input-box input[type="submit"] {
    width: 100%;
    background: var(--brand-color);
    color: var(--white-color);
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border: 1px solid var(--brand-color);
    transition: 0.5s;
    font-family: var(--primary-color);
    font-weight: 600;
}

.contact-us-section .contact-form .input-box input[type="submit"]:hover {
    background: #FFF;
    color: var(--brand-color);
}

.map-section {
    width: 100%;
    height: 600px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    padding: 0px 0;
    padding-top: 0;

}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


.eleme-heading-title{
    font-size: 180px;
    font-weight: 800;
    line-height: 1.2em;
    color: #fff;
    text-align: center;
}
.button-wrapper a{
    background-color: var(--brand-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    backdrop-filter: blur(20px);
}
.elemen-button{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4em;
    fill: var(--backgroundBlack);
    color: #fff;
    border-radius: 50% 50% 50% 50%;
    height: 100px;
    width: 100px;
    text-decoration: none;
}
.colaborate-commoone::before{
    content: '';
    display: block;
    position: absolute;
    left: -120px;
    top: 15%;
    background: url(https://ontariowealth.ca/wp-content/uploads/2025/05/work-together-bg-shape.png) no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 40%;
    width: 305px;
    height: 315px;
    animation: circlmoveerotate 12s infinite linear;
    animation-direction: alternate;
    z-index: 1;
}

.size-default
 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2em;
    color: #fff;
    padding-top: 20px;
}

@keyframes circlmoveerotate {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    
    100% {
        transform: translateY(160px) rotate(360deg);
    } 
}
.button-wrapper{
        position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.padding_sections.colaborate-commoone{
    background: #000;
}


@media (max-width: 1024px) {
    .eleme-heading-title {
        font-size: 120px;
        line-height: 1.2em;
    }
}
@media (max-width: 767px) {
    .eleme-heading-title {
        font-size: 45px;
        padding: 9px;
    }
}
@media (max-width: 576px) {
    .button-wrapper {
        position: absolute;
        left: 50%;
        top: 62%;
        transform: translate(-50%, -50%);
    }
}

@media(min-width:991px){
	.elemen-button{
		height:150px;
	width:150px;
	}
	
}


/* ========================= Service details section =============== */
.tp-service-details-area {
    padding: 60px 0;
}

.tp-service-details-thumb img {
    width: 100%;
}

.tp-service-details-area .tp-service-details-thumb img {
    height: 375px;
    width: 100%;
    object-fit: cover;
}

.service-sidebar__widget {
    padding: 28px 22px 40px 22px !important;
}

.service-sidebar__widget {
    background: var(--blue-color);
    padding: 28px 40px 40px 40px;
}
.service-sidebar__widget .headerBtn a{
	color:#fff ;
}

.tp-service-details-left-box ,.product-img-wrapper{
    position: sticky;
    top: 110px;
}
.productsDetalsbtn{
    text-align: center;
}
.sdetails {
    width: 100% !important;
    text-align: center;
}

.tp-blog-sidebar__widget-title {
    font-weight: 800;
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--white-color);
    font-family: var(--primary-font);
    text-align: center;
}



/* ====book now==== */
.bookNow {
    padding: 50px 0;
}

.bookNowContainer h4 {
    max-width: 370px;
    margin-bottom: 50px;
    font-size: 22px;
    text-align: center;
    margin: 0 auto;
}

.bookNowContainer h5 a {
    font-family: var(--primary-font) 'Agnifa', serif;
    font-weight: 400;
    font-size: 41px;
    margin-bottom: 20px;
    animation: zoomInOut 3s ease-in-out infinite;
    text-align: center;
    color: var(--blue-color);
    text-decoration: none;
}

.bookNowContainer h5 {
    padding-bottom: 20px;
}

.contactContainer {
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.bookNowContainer {
    max-width: 810px;
    margin: 0px auto;
    width: 80%;
    padding: 60px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 3px 17.2px 0 #D9976C4D;
}

.contactContainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff6a6a 0%, #d60000 100%);
    border-radius: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contactContainer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #ff6a6a 0%, #d60000 100%);
    border-radius: 40px;
    /* font-family: "Poppins", Sans-serif; */
    font-weight: 500;
    box-shadow: 0 -2px 25.7px 9px #D9976C66;
    transition: all 0.3s ease;
    z-index: 1;
    border-bottom: 1.4px solid #fff;
    white-space: nowrap;
    padding: 12px 24px;
}
@keyframes blink {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.3;
      transform: scale(1.2);
    }
  }
  
  .phonesec i {
    animation: blink 1s infinite ease-in-out;
    color: red; 
  }
  
.phonesec a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 29px;
    font-weight: 400;
    gap: 15px;
    color: #fff;
    text-decoration: none;
}

.phonesec {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.phonesec span {
    background-color: #fff;
    padding: 10px 14px;
    border-radius: 50px;
}

.phonesec a:hover {
    color: #fff !important;
    text-decoration: none;
}

@keyframes zoomInOut {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  
  .bookNowContainer h5 a {
    display: inline-block; 
    animation: zoomInOut 2s infinite ease-in-out;
  }
  



@media (max-width:991px) {
    .highlightContainer .col-lg-3 {
        margin-bottom: 30px;
    }

    .bookNowContainer {
        max-width: 100%;
        padding: 20px 0;
    }

}

.phonesec a {
    font-size: 18px;
    gap: 10px;
}


/* =================== blog Details ============ */
.blog-section {
    min-height: 600px;
}

.blog-banner-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.datespost {
    color: #6c757d;
    font-size: 14px;
}

.blogs-details p {
    line-height: 1.8;
    font-size: 16px;
    font-weight: 400 !important;

}

.blog-list {
    padding-left: 2rem;
    list-style-type: decimal;
}

.blog-list li {
    margin-bottom: 10px;
}

.blog-list p {
    margin: 0;
}

.recent-post h4,
.category-post h4 {
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: var(--blue-color);
}

.recent-post .recent-img img {
    border-radius: 4px;
    object-fit: cover;
}

.recent-post a {
    text-decoration: none;
    color: inherit;
}

.recent-content h6,
.blogs-details p {
    font-size: 14px !important;
    line-height: 130%;
    margin-bottom: 4px;
    font-family: var(--primary-font);
    color: var(--black-color);
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.recent-content h6:hover {
    color: var(--brand-color);
}

.category-post ul {
    list-style: none;
    padding: 0;
}

.category-post ul li {
    margin-bottom: 10px;
}

.category-post .link {
    text-decoration: none;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: var(--black-color);
    transition: all 0.3s ease;
}

.category-post .link:hover {
    color: var(--brand-color);
}

.recentblogright {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    border-radius: 12px;
}

.blogDetails {
    padding: 60px 0;
}




/* Theme color */
:root {
    --theme-red: #d63333;
    --theme-red-dark: #b32424;
    --light-red-bg: #fff5f5;
}

.product-details-modern {
    /* background-color: #0C1D51; */
    margin: 0px 0;
    padding: 50px 0px;
}
.product-details-modern .bottom_content{
	font-size:18px;
}

.text-theme-red {
    color: var(--theme-red);
}

.text-uppercase {
    color: var(--brand-color);
    font-weight: 500;
    font-family: var(--primary-font);
    text-align: center;
    font-size: 18px;
}

.product-title {
    /* color: var(--white-color); */
    color: #000;
    font-weight: 600;
    font-family: var(--primary-font);
    text-align: center;
    font-size: 42px;
    padding-bottom: 12px;
}
.border-red,.theme-shadow img {
    border: 4px solid var(--theme-red);
    width: 100%;
}
.theme-shadow img{
    border: 3px solid var(--brand-color);
    border-radius: 20px 0 20px;
}
.theme-shadow{
    padding-top: 17px;

}
.theme-shadow img:hover {
    box-shadow: 0 10px 25px rgba(214, 51, 51, 0.3);
}

/* Specs grid */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 1rem;
}

.specs-grid .spec {
    background: var(--white-color);
    border: 2px solid var(--brand-color);
    padding: 12px 15px;
    font-size: 14px;
    color: var(--black-color);
    transition: all 0.2s ease-in-out;
    font-weight: 600;
    font-family: var(--primary-font);
    border-radius: 10px 0 10px;
}
.spec strong{
    color: var(--blue-color);

}
.specs-grid .spec:hover {
    background: var(--light-red-bg);
    border-color: var(--theme-red);
    color: var(--theme-red-dark);
}

/* Buttons */
.btn-theme-red {
    background-color: var(--theme-red);
    border-color: var(--theme-red);
    color: white;
}

.btn-theme-red:hover {
    background-color: var(--theme-red-dark);
    border-color: var(--theme-red-dark);
    color: white;
}

/* Responsive layout */
@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .product-title {
        font-size: 1.6rem;
    }
}


.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    position: unset;
    background: none;
}


.blogs-details p {
    line-height: 1.8;
    font-size: 16px !important;
    font-weight: 400 !important;
}
#contact-form #custome-text{
height: 120px;
}
#contact-form .wpcf7-submit{
width: 100%;
    background: var(--brand-color);
    color: var(--white-color);
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border: 1px solid var(--brand-color);
    transition: 0.5s;
    font-family: var(--primary-color);
    font-weight: 600;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  padding: 5px 14px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  animation: blinkAnimation 1.5s infinite;
  transition: transform 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Blink animation */
@keyframes blinkAnimation {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}


.map_wrapper .map_bx iframe{
    width: 100%;
    border: 2px solid var(--brand-color);
    border-radius: 10px 0 10px;
}
/* #menu-item-306 .dropdown.arrow-top{
	    overflow: unset;
}
#menu-item-307 .dropdown.arrow-top{
	left: 91%;
    z-index: 99;
}
##menu-item-307 a:hover .dropdown.arrow-top{
	opacity:1;
	visibility:visible;
} */


.main-header .dropdown.arrow-top {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, 10%);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background: #fff;
  padding: 0px;
  z-index: 99;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s linear;
  list-style: none;
  max-height: 350px;
  overflow-y: scroll;
}

.nav-item.dropdown:hover > .dropdown.arrow-top,
#menu-item-306:hover > .dropdown.arrow-top,
#menu-item-307:hover > .dropdown.arrow-top,
#menu-item-311:hover > .dropdown.arrow-top{
  opacity: 1;
  visibility: visible;
}

#menu-item-306,
#menu-item-307, #menu-item-311 {
  position: relative;
}

#menu-item-306 .dropdown.arrow-top {
  overflow: unset;
}
#menu-item-307 .dropdown.arrow-top {
  left: 91%;
  z-index: 99;
}

/* .main-header .dropdown.arrow-top li:hover{
    background: var(--blue-color);
}
.main-header .dropdown.arrow-top > li:hover a{
    color: #fff !important;
} */



.nav-item.dropdown:hover > .dropdown.arrow-top,
#menu-item-314:hover > .dropdown.arrow-top,
#menu-item-315:hover > .dropdown.arrow-top,
#menu-item-316:hover > .dropdown.arrow-top{
  opacity: 1;
  visibility: visible;
}

#menu-item-314,
#menu-item-315, #menu-item-316 {
  position: relative;
}

#menu-item-14 .dropdown.arrow-top {
  overflow: unset !important;
	top: 55px;
}
#menu-item-315 .dropdown.arrow-top {
  left: 91%;
  z-index: 99;
	max-height:350px;
	overflow-y:scroll !important;
	    top: 15%;
}
#menu-item-316 .dropdown.arrow-top {
  left: 91%;
  z-index: 99;
	max-height:350px;
	overflow-y:scroll !important;
	top: 9%;
}
.btn.btn-secondary.product_details{
        background-color: var(--brand-color);
    padding: 8px 20px;
    border-radius: 5px 0 5px;
}

.whatsapchat {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 10px;
    background-color: #25d366;
    border-radius: 50px;
    text-align: center;
    -webkit-box-shadow: 2px 2px 3px #999;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translatey(0px);
    -ms-transform: translatey(0px);
    transform: translatey(0px);
    -webkit-animation: pulse 1.5s infinite;
    animation: pulse 1.5s infinite;
    -webkit-box-shadow: 0 0 0 0 #42db87;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.whatsapchat i {
    font-size: 30px;
    color:#fff;
    margin-top: 2px;
}

@-webkit-keyframes pulsing {
    to {
        -webkit-box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

@keyframes pulsing {
    to {
        -webkit-box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}



/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: var(--brand-color) !important;
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

.nav-item.g-translater{
    position: relative;
}
.gtranslate_wrapper{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}
.gt_float_switcher .gt-selected .gt-current-lang{
        display: flex;
    align-items: center;
    gap: 10px;
}
#gt_float_wrapper{
    position: relative;
}
.gt_float_switcher .gt_options.gt-open{
        position: absolute;
    width: 185px;
    background: #fff;
    top: 90px;
}
.gtranslate_wrapper .index2{
    display: none !important;
}
.gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code{
        font-size: 16px;
    font-weight: 500;
    font-family: var(--primary-font);
}
.gt_float_switcher .gt_options a{
  font-size: 16px;
    font-weight: 500;
     font-family: var(--primary-font);
}
.gt_float_switcher{
    box-shadow: unset !important;
}
.oil-gas-single {
    padding: 60px 0;
    overflow-x: scroll;
}

@media(min-width:991px){
.oil-gas-single {
    padding: 40px 0;
    overflow-x: auto;
}	
}
.oil-gas-single .bottom_content{
	font-size:18px;
}

.column-row-oil {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #C40F2E;
}

.column-item-oil {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--primary-font);
    color: var(--white-color);
}

.date{
    justify-content: space-between;
    display: flex;
}
.date h3 {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
    color: #000;
    font-family: var(--primary-font);
}
@media (min-width: 991px) {
    .navbar-expand-lg .offcanvas .offcanvas-body {
        gap: 1px;
        align-items: center;
        /* padding-left: 192px; */
        padding-left: 243px;
    }
}














.popupform-content {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.popupform-header,
.popupform-footer {
  border: none;
  background: #f5f5f5;
}

.popupform-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.popupform-form-container {
  padding: 20px;
}

.popupform-close-btn {
  color: #fff;
}

.enquiry-submit-btn {
  background-color: var(--brand-color);
  color: #fff;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
	width:100%;
}
.popup-banner-btn .enquiry-submit-btn{
	margin-top:17px;
}
.popupform-content {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--brand-color);
    margin-top: 10px;
}
.popupform-header{
	border-radius:0px;
}
.popupform-body{
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px !important;
}
.popupform-header, .popupform-footer {
    border: none;
    /* background: #f5f5f5; */
    background: dimgray;
    padding-bottom: 77px;
	background-image: url(https://images.pexels.com/photos/325185/pexels-photo-325185.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940);
    background-size: cover;
    background-position: center;
}

.enquiry-submit-btn:hover {
  background-color: var(--brand-color);
}
#menu-item-249 .dropdown.arrow-top{
    overflow-y: auto !important;
}
.current_page_item.active a{
	color:var(--brand-color) !important;
}
.current_page_item.active{
	border-bottom:2px solid var(--brand-color);  
}


/* Mission-wrapper */


.mission_wrapper .content_wrapper h3{
    font-size: 30px;
    font-weight: 600;
}
.mission_wrapper .content_wrapper p{
    font-size: 18px;
}
.mission_wrapper .image_wrapper img{
        height: 350px;
    object-fit: cover;
	border-radius:10px;
    /* border-radius: 0 20px 20px 0; */
}
.mission_wrapper .content_wrapper{
        /* box-shadow:0 0 10px var(--brand-color); */
    padding: 24px;
    /* border-radius: 15px 0 15px; */
    margin: 10px;
}
.mission_wrapper .row:nth-child(even){
    flex-direction: row-reverse;
}
.content_wrapper.pointer p{
display: flex;
gap: 10px;
    align-items: baseline;
}

/* Floating-icon */
.sticky-icon  {
	z-index:1;
	position:fixed;
	top:15%;
	right:0%;
	width:220px;
	display:flex;
	flex-direction:column;}  
.sticky-icon a  {
	transform:translate(160px,0px);
	border-radius:0;
	text-align:left;
	margin:2px;
	text-decoration:none;
	text-transform:uppercase;
	padding:10px;
	font-size:22px;
	font-family:'Oswald', sans-serif;
	transition:all 0.8s;}
.sticky-icon a:hover  {
	color:#FFF;
	transform:translate(0px,0px);}	
.sticky-icon a:hover i  {
	transform:rotate(360deg);}
/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/
.Facebook  {
	background-color:#2C80D3;
	color:#FFF;}
	
.Youtube  {
	background-color:#fa0910;
	color:#FFF;}
	
.Twitter  {
	background-color:#53c5ff;
	color:#FFF;}
	
.Instagram  {
	background-color:#FD1D1D;
	color:#FFF;}
	
.Google  {
	background-color:#d34836;
	color:#FFF;}						
.sticky-icon a i {
	background-color:#FFF;
	height:40px;
	width:40px;
	color:#000;
	text-align:center;
	line-height:40px;
	border-radius:50%;
	margin-right:20px;
	transition:all 0.5s;}
.sticky-icon a i.fa-facebook-f  {
	background-color:#FFF;
	color:#2C80D3;}
	
.sticky-icon a i.fa-google-plus-g  {
	background-color:#FFF;
	color:#d34836;}
	
.sticky-icon a i.fa-instagram  {
	background-color:#FFF;
	color:#FD1D1D;}
	
.sticky-icon a i.fa-youtube  {
	background-color:#FFF;
	color:#fa0910;}
	
.sticky-icon a i.fa-twitter  {
	background-color:#FFF;
	color:#53c5ff;}
.fas fa-shopping-cart  {
	background-color:#FFF;}	
#myBtn {
	height:50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  text-align:center;
  padding:10px;
  text-align:center;
	line-height:40px;
  border: none;
  outline: none;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
  border-radius: 50%;
}
.fa-arrow-circle-up  {
	font-size:30px;}

#myBtn:hover {
  background-color: #555;
}			

/* Social-icon */

/* fixed social*/
#fixed-social {
   position: fixed;
   top: 50%;
	z-index:99;
}

#fixed-social a {
   color: #fff;
   display: block;
   height: 40px;
   position: relative;
   text-align: center;
    line-height: 40px;
   width: 40px;
   margin-bottom: 1px;
   z-index: 2;
}
#fixed-social a:hover>span{
	visibility: visible;
  left: 41px;
  opacity: 1;
} 
#fixed-social a span {
	line-height: 40px;
    left: 60px;
    position: absolute;
    text-align: center;
    width: 120px;
    visibility: hidden;
    transition-duration: 0.5s;
    z-index: 1;
    opacity: 0;
}
 .fixed-facebook{
 	background-color:#1877F2;
 }
 .fixed-facebook span{
	background-color: #1877F2;
 }
 .fixed-twitter{
	background-color: #7D3895;

 }
 .fixed-twitter span{
 	background-color: #7D3895;
 }
 .fixed-gplus{
	background-color: #00AF54;

 }
 .fixed-gplus span{
 	background-color: #00AF54;
 }
 .fixed-linkedin{
	background-color:#0A66C2;

 }
 .fixed-linkedin span{
 	background-color: #0A66C2;
 }
 .fixed-instagrem{
	background-color: #ED2B29;

 }
 .fixed-instagrem span{
 	background-color: #ED2B29;
 }
 .fixed-tumblr{
	background-color: #EB1471;

 }
 .fixed-tumblr span{
 	background-color: #EB1471;
 }

/*end fixed social*/

/* Table css  start */
.wp-block-heading{
	font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: var(--primary-font);
    color: #000;
	text-align:center;
}
