
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    box-sizing: border-box;
    border: 0;
    outline: 0;    
}
:root{
    --primary-color:#553CDE;
    --yellow-color:#F2CB67;
    --dark-yellow:#FBBC05;
    --white-text:#ffffff;
    --black-color:#000000;
    --gray-color:#F4F4F4;
    --blue-color:#0B004F;
    --green-color:#00FF09;
    --dark-green:#00B67C;
    --gray-text:#777777;

}
.white-color{
    --white-text:#ffffff;
}
.text-primary{
    color: var(--primary-color) !important;
}
.text-yellow{
    color: var(--yello-color);
}
.text-blue{
    color: var(--blue-color);
}
.gray-bg{
    background-color:var(--gray-color)
}
body{
    font-family: "Montserrat", serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--black-color);
}
h1,h2,h3,h4,h5,h6{
    font-weight: 600;
}
h1{font-size: 36px;}
h2{font-size: 36px;}
h3{font-size: 24px;}
h4{font-size: 20px;}
h5{font-size: 18px;}
h6{font-size: 16px;}
section{
    padding: 80px 0;
}
a{
    text-decoration: none;
}

  

.header {
    position: absolute;
    width: 100%;
}
header.header.scrolled {
    position: fixed !important;
    background-color: var(--primary-color);
    background: linear-gradient(76deg, rgba(31,0,116,1) 0%, rgba(30,6,113,1) 41%, rgba(71,45,115,1) 100%);
    width: 100%;
    top: 0;
    z-index: 999;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}
header.header.scrolled .topbar{ 
    display: none;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out; 
}
.header .topbar{
    padding: 15px 0;
}
.ContactWrap{
    display: flex; 
    align-items: center; 
    justify-content: end;
    gap: 30px;
}
.ContactWrap a{
    color: var(--white-text);
}
.ContactWrap .TopmailWrap a i,.ContactWrap .TopNumberWrap a i{
    margin-right: 10px;
}
.SocialLinksWrap a:last-child i{
    margin-left: 10px;
}
.header .navbar-nav .nav-link{
    color: var(--white-text);
    padding: 0 15px;
    font-weight: 400;
}
.header .navbar-nav .nav-link.active,.header .navbar-nav .nav-link:hover{
    color: var(--yellow-color);
}
.header .ContactWrap  a:hover{
    color: var(--yellow-color);
}
.header .navbar a.btn-primary{
    padding: 7px 20px;
    font-weight: 600;
    border: 1px solid #ffffff44;
}
.btn-primary{
    background-color: var(--primary-color);
    color: var(--white-text);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border: 0;
    padding: 15px 25px;
}
.btn-primary:hover{
    background-color: var(--yellow-color);
    color: var(--black-color);
}
.btn-primary i{
    margin-left: 20px;
}
.header button.navbar-toggler {
    border: none;
    color: var(--white-text);
    font-size: 30px;
    padding: 0;
    margin-left: 15px;
    float:right;
}
.header .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}
.header a.navbar-brand img {
    margin-bottom: 10px;
}
/* HeroSection */

.HeroSection{
    background-image: url('../images/hero-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    /* height: 742px; */
    padding-top: 150px;
    display: inline-grid;
    align-items: center;    
}
.HeroSection.HeroSectionCorporateSetion{
    background: rgb(1,17,85);
    background: linear-gradient(150deg, rgba(1,17,85,1) 61%, rgba(209,144,0,1) 100%);
    height: 640px;
}
.HeroSection h1{
    font-size: 36px;
    color: var(--white-text);
    padding-right: 13%;
    line-height: 42px;
}
.HeroSection h1 span{
    display: inline-block;
    margin-top: 20px;
}
.herovideoslides{
    position: relative;
}
.slick-list{
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
button.slick-arrow {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #fff;
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 99;
}
button.slick-next.slick-arrow{
    left: 70px;
}
.HeroSection .ContactWrap{
    display: flex; 
    align-items: center; 
    justify-content: start;
    gap: 30px;
    margin-top: 30px;
}
.HeroSection .ContactWrap a{
    font-size: 20px;
}
.HeroSection .ContactWrap a i{
    margin-right: 10px;
}
.HeroSection .ContactWrap a.btn-primary{
    background-color: var(--yellow-color);
    color: var(--black-color);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border: 0;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
}
.HeroSection  video.slick-slide {
    height: 427px;
}

.ourPartnersSection{
    margin-top: 50px;
}
.ourPartnersSection h2{
    color: var(--white-text);
    text-align: right;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    border-right: 1px solid #fff;
    margin-right: 30px;
    padding-right: 30px;
}
.ourPartners .slick-slide {
    margin: 0 30px; 
}

.ourPartners {
    display: flex;
    justify-content: space-between;
}
/**** WhoWeAre ***/
.WhoWeAreContentWrap{
    background-color: var(--gray-color);
    padding: 30px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.WhoWeAre .WhoWeAreContentWrap h2{
color: var(--primary-color);
font-size: 40px;
margin-bottom: 20px;
}
.WhoWeAre .WhoWeAreContentWrap p{
    margin-bottom: 30px;
    line-height: 24px;
    font-weight: 300;
}
/************ ReviewsSection ********/
.ReviewsSection{
    position: relative;
    background-image: url(../images/corporate-training/bg-second-section.png);
    /* background-attachment:calc(0 - 100%); */
    background-repeat: repeat;
    background-position: left top;
    z-index: 8;
    color: #fff;

}
.ReviewsSection .container{
    position: relative;
    z-index: 11;
}
.ReviewsSection h2{
    color: var(--black-color);
}

.ReviewStarts{
    display: block;
    margin-top: 15px;
    color: #000;
    font-weight: 700;
}
.Reviews i{
    color:var(--dark-yellow)

}
.BusinessSolutionContentWrapRow{
    margin-top: 30px;
}
.BusinessSolutionContentWrap{
    background-color: var(--gray-color);
    padding: 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    margin-right: 30px;
}
.BusinessSolutionContentWrap.BusinessSolutionRightBox{
    margin-left: 30px;
    margin-right: 0;
}
.BusinessSolutionContentWrap h3{
    color: var(--primary-color);
}
.icon-link{
    color: var(--black-color);
    font-weight: 600;
}
.icon-link:hover{
    color: var(--primary-color);
}
.BusinessSolutionContentWrapRow img.border-bottom{
    border-bottom: 5px solid var(--primary-color) !important;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    width: 100%;
}
/****** OurAceTechnologiesContentWrap ******/
.TechnologiesWeTrainSection{
    background-color: var(--primary-color);
    background-image: url(../images/online-training/bg-second-section.png);
    background-repeat: repeat;
    background-position: top right;
    overflow: hidden;
    background-size: 50px 50px;
}
.OurAceTechnologiesContentWrap{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    align-items: center;
    align-content: center;
    text-align: center;
    margin-top: 30px;

}
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap{
    border-left: 1px solid #B8B8B8;
    border-bottom: 1px solid #B8B8B8;    
    padding-bottom: 20px;
}
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(1),
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(6),
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(11){
    border-left: 0;
}
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(11),
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(12),
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(13),
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(14),
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(15){
    border-bottom: 0;
}
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap img{
    height: 64px;
    width: 64px;
    margin-top: 20px;
}
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap h4{
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    margin-top: 15px;
}
.IndustriesWeEmpowerContentBox{
    position: relative;
    z-index: 8;
    overflow: hidden;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    margin: 20px;
}
.IndustriesWeEmpowerContentBox:after{
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #05002078;
    position: absolute;
    z-index: 9;
    transition: transform 0.3s ease;
}
.IndustriesWeEmpowerContentBox h3{
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white-text);
    z-index: 10;
    font-size: 20px;
    font-weight: 700;
}
.IndustriesWeEmpowerContentBox img{
    width: 100%;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    transition: transform 1s ease;
    -webkit-transition: transform 1s ease;
    -moz-transition: transform 1s ease;
    -ms-transition: transform 1s ease;
    -o-transition: transform 1s ease;
}
.IndustriesWeEmpower .IndustriesWeEmpowerContentWrap button.slick-arrow{
    bottom: -30px;
    right: 30px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.IndustriesWeEmpower .IndustriesWeEmpowerContentWrap button.slick-next.slick-arrow {
    right: 30px;
    left: auto;
}
.IndustriesWeEmpower .IndustriesWeEmpowerContentWrap button.slick-prev.slick-arrow {
    right: 70px;
    left: auto;
}
.IndustriesWeEmpowerContentBox:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.IndustriesWeEmpowerContentBox:hover::after{
    background-color: #050020a6;

}
.WhatOurHappyClientsSay{
    position: relative;
}
.WhatOurHappyClientsSay .container{
position: relative;
z-index: 10;
}
.WhatOurHappyClientsSay::after{
    content: "";
    position: absolute;
    z-index: 8;
    bottom: 0;
    height: 50%;
    width: 100%;
    background-color: var(--primary-color);
    z-index: 9;
}
.HappyClientsContentWrap {
    background-color:var(--white-text);
    padding: 50px 50px 50px 50px;
    margin-top: 30px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    position: relative;
}
.HappyClientsWrap p{
    text-align: left;
    font-size: 18px;
    font-weight: 400;
}
.HappyClientsWrap span{
    display: block;
}
.HappyClientsWrap .HappyClientName{
    font-weight: 600;
    font-size: 20px;
    margin-top: 20px;
    line-height: 24px;
}
.HappyClientsWrap .HappyClientPosition{
    font-weight: 400;
    font-size: 15px;
    margin-top: 10px;
}
.HappyClientsWrap .slick-dots{
    display: flex;
    list-style: none;
    align-items: center;
    align-items: center;
    text-align: center;
    bottom: 25px;
    left: calc(50% - 72px);
    position: absolute;
    padding: 0;
    margin: 0;

}
.HappyClientsWrap .slick-dots li button{
    background-color: var(--gray-color);
    font-size: 0;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin: 2px;
}
.HappyClientsWrap .slick-dots li.slick-active button{
    background-color: var(--primary-color);
}
.HappyClientsWrap button.slick-next.slick-arrow{
    right: calc(49% - 15px);
left: auto;
color: var(--primary-color);
bottom: 17px;
}
.HappyClientsWrap button.slick-prev.slick-arrow{
    left: calc(42% - 15px);
    color: var(--primary-color);
    bottom: 17px;
}
.form-control {
    padding: .375rem .75rem;
    font-size: 14px;
    font-weight: 400;
    height: 45px;
}
textarea.form-control {
    height: 153px;
}
/********* blogcard ***********/
.blogcard .card-imgWap{
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    overflow: hidden;
}
.blogcard img.card-img-top{
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.blogcard .card-body .BlogPostedAuthorAndDate{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 500;
}
.blogcard .card-body{
    margin-top: 20px;
}
.blogcard .card-body a{
    color: var(--black-color);
}
.blogcard .card-body .card-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.blogcard .card-body a:hover{
    color: var(--primary-color);
}
.blogcard.blogcardRight {
    margin-bottom: 35px;
}
.blogcardRight .card-body {
    padding: 0 20px;
}
.blogcard.blogcardRight .card-body .BlogPostedAuthorAndDate {
    margin-bottom: 15px;
    line-height: 12px;
}
.blogcard.blogcardRight .card-body .card-title{
    margin-bottom: 10px;
}
span.BlogPostedAuthor {
    border-right: 1px solid;
    padding-right: 20px;
}
.footer{
    background-color: var(--blue-color);
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-position: center center;

    color: var(--white-text);
}
.FooterTop{
    padding: 50px 0;
}
.FooterTop img{
    margin-bottom: 1%;
}
.footer h4{
    color: var(--yellow-color);
    margin-bottom: 30px;
}
.footer ul.FooterLinks{
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer ul.FooterLinks li{
    position: relative;
    margin-bottom: 20px;
    padding-left: 25px;
}
.footer ul.FooterLinks li::before{
    content: "";
    position:absolute;
    left: 0;
    top: 10px;
    height: 5px;
    width: 5px;
    background-color: var(--yellow-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: transform 0.3s ease;
}
.footer ul.FooterLinks li a{
    display: inline-block;
    color: var(--white-text);
    transition: transform 0.3s ease;
}
.footer ul.FooterLinks li a:hover{
    color: var(--yellow-color);
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}
.footer ul.FooterLinks li:hover::before{
    background-color: var(--white-text);

}
.footer ul.FooterLinks li:hover{
    color: var(--white-text);
}
.FooterContact{
    margin: 0;
    padding: 0;
    list-style: none;
}
.FooterContact li{
    margin-bottom: 20px;
}
.FooterContact li a{
    color: var(--white-text);
    transition: transform 0.3s ease;
    display: inline-block;
}
.FooterContact li a i{
    color: var(--yellow-color);
    margin-right: 10px;
    transition: transform 0.3s ease;
}
.FooterContact li a:hover {
    color: var(--yellow-color);
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}
.FollowUs{
    display: flex;
    gap: 20px;
}
.footer h4.FollowUsHeading{
    margin-bottom: 10px;
    color: var(--white-text);
}
.FollowUs a{
    font-size: 30px;
    color: var(--yellow-color);
    transition: transform 0.3s ease;
}
.FollowUs a:hover{
    color: var(--white-text);
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}
.FooterBottom{
    padding: 20px 0;
    border-top: 1px solid #ffffff1f;
    text-align: center;
}
.FooterBottom p{
    margin-bottom: 0;
}
.go-to-top{
    display: none;
}
.go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background: rgb(31,0,116);
    background: linear-gradient(76deg, rgba(31,0,116,1) 0%, rgba(30,6,113,1) 41%, rgba(71,45,115,1) 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index:99;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
}
  
  .go-to-top:hover {
    background-color: #0056b3;
  }
/****** Corporate Training Page CSS **********/


.HighlitedSection{
    background-image: url(../images/corporate-training/bg-second-section.png);
    background-position: left top;
    background-repeat: repeat;
    background-color: var(--white-text);
}
.HighlitedBoc{
    background-color: var(--primary-color);
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
    align-content: center;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.HighlitedBoc .HilightTextWrap{
    color: var(--white-text);
}
.HighlitedBoc .HilightTextWrap h2{
    color: var(--white-text);
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}
.HighlitedBoc .HilightTextWrap ul{
    padding: 0;
    margin-bottom: 20px;
    color: var(--white-text);
    font-size: 24px;
    font-weight: 500;
    list-style: none;
}
.HighlitedBoc .HilightTextWrap ul li{
    position: relative;
    padding-left: 40px;
}
.HighlitedBoc .HilightTextWrap ul li::before{
    content: "\f270";
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 8px;
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--green-color);
}
.HighlitedBoc .HilightTextWrap ul li:first-child{
margin-bottom: 15px;
}
.btn-yellow{
background-color: var(--yellow-color);
font-weight: 500;
color: var(--black-color);
}

.HilightWrapSlides{
max-width: 480px;
width: 100%;
}
.HilightWrapSlides img{
    width: 100%;
}
.MaximizingGrowthSection h2 {
    margin-bottom: 20px;
}
.MaximizingGrowthSection h2 +p {
    margin-bottom: 30px;
}
.MaximizingGrowthSection h2 span{
color: var(--primary-color);
}
.MaximizingGrowthKeyWrapPer{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    align-content: center; 

}
.GrowthKeyWrap{
    padding: 30px 20px;
    background-color: var(--white-text);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    min-height: 230px;
    box-shadow: 0 0 25px rgb(0 0 0 / 11%);
}
.GrowthKeyWrap .iconWrap{
    display: flex;
    align-items: center;
    align-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.GrowthKeyWrap h4{
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
}
.GrowthKeyWrap p{
color: var(--gray-text);
font-weight: 300;
font-size: 16px;
line-height: 25px;
margin-bottom: 0;
}
.NewKeyFeaturesandBenifitsSection{
    background-color: var(--gray-color);
    background-position: center center;
    background-repeat: no-repeat;
}
.KeyFeaturesBenifitsWrap{
    width: 100%;
}
.KeyFeaturesBenifitsCenterinnerWrapper h2{
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 600;
}
.KeyFeaturesBenifitsCenterinnerWrapper h2 span{
    color: var(--primary-color);
}

.KeyFeaturesBenifitsWrap .KeyFeatureBox:nth-child(1) {
    margin-right: -18%;
}

.KeyFeaturesBenifitsWrap .KeyFeatureBox:nth-child(2){
    margin-right: 4%;
}
 

.KeyFeaturesBenifitsWrap .KeyFeatureBox{
    flex-direction: row-reverse;
}
.KeyFeatureBox {
    display: flex;
    align-items: self-start;
    align-content: center;
    text-align: left;
    margin-bottom: 70px;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    z-index: 9;
}

.KeyFeaturesBenifitsrightWrap .KeyFeatureBox:nth-child(1) {
    margin-left: -20%;
}

.KeyFeaturesBenifitsrightWrap .KeyFeatureBox:nth-child(2) {
    margin-left: 6%;
}
.KeyFeatureBox  .KeyFeatureIconBox {
    width: 80px;
    height: 80px;
    background-color: var(--gray-color);
    border-radius: 50%;
    line-height: 80px;
    text-align: center;
    margin-left : 0px;
    float: left;
    display: inline-block;
}

.KeyFeatureBox  .KeyFeatureIconBox img{
    width:35px !important;
    height: 35px !important;
}

.KeyFeaturesBenifitsWrap .KeyFeatureBox .KeyFeatureIconBox{
    margin-left: 10px;
}

.KeyFeatureBox .KeyFeatureTextBox{
    display: inline-block;
    float: left;
    width: calc(100% - 120px);
    margin-left: 10px;
}
.KeyFeatureBox .KeyFeatureTextBox h4{
    font-size: 18px;
    font-weight: 600;
}
.KeyFeatureBox .KeyFeatureTextBox p{
    margin: 0;
}


.KeyFeaturesBenifitsWrap .KeyFeatureBox .KeyFeatureTextBox{
    text-align: right;
}

.KeyFeatureBox .KeyFeatureTextBox p br{
    display: none;
}

.KeyFeaturesBenifitsContentwrap{
    text-align: center;
    position: relative;
}
.KeyFeaturesBenifitsContentwrap .KeyFeaturesBenifitsCenterOuterWrapper {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 525px;
    height: 525px;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    align-content: center;
}
.KeyFeaturesBenifitsContentwrap .KeyFeaturesBenifitsCenterinnerWrapper {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 327px;
    height: 327px;
    background-color: var(--white-color);
    border: 15px solid var(--primary-color);
    margin: 0 auto;
    display: block;
    align-items: center;
    align-content: center;

}
.NewKeyFeaturesandBenifitsSection  img {
    display: inline-block;
}
.KeyFeaturesBenifitsHeadingWrap {
    display: flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
}
.KeyFeaturesBenifitsContentwrap .KeyFeatureBox{       
    display: inline-grid;
    text-align: center;
    position: relative;  
    place-items:center; 
}
.KeyFeaturesBenifitsContentwrap .KeyFeatureBox .KeyFeatureIconBox{
float: none;
position: absolute;
bottom: 80%;;
}
.KeyFeaturesBenifitsContentwrap .KeyFeatureBox .KeyFeatureTextBox {
padding-top: 50px;
}
.TechnologiesWeTrainSection h2{
font-size: 24px;
font-weight: 600;
color: var(--white-text);
margin-bottom: 30px;
}
.TechnologiesWeTrainSection .TechnologiesWeTrain div.slick-slide {
    background-color: var(--white-text);
    color: var(--black-color);
    text-align: center;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    padding: 10px;
    margin: 0 10px;
    height: 170px;
}
.TechnologiesWeTrainSection .TechnologiesWeTrain img{
    height: 90px;
    margin: 5px auto 5px auto; 

}
.TechnologiesWeTrainSection .TechnologiesWeTrain h6{
    font-size: 14px;
}
/*********** staffing Solution *************/
body.about-us header.header,
body.staffing-solutions header.header,
body.blog header.header,
body.contact-us header.header,
body.hr-services header.header,
body.online-training header.header,
body.case-studies header.header
body.page-template-template-case2 header.header
{

    position: sticky;
    background-color: var(--primary-color);
    background: linear-gradient(76deg, rgba(31,0,116,1) 0%, rgba(30,6,113,1) 41%, rgba(71,45,115,1) 100%);
}
.HeroSectionWithSlidesSection{
    padding: 0;
}
.MainSliderWidhText .slidewrap{
    position: relative;
    height: 550px;    
    overflow: hidden;
}
.MainSliderWidhText .slidewrap:before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(218, 218, 218) 0%, rgba(202, 202, 202, 0.84) 39%, rgba(71, 45, 115, 0) 57%);

}
.MainSliderWidhText .slidewrap .container{
    height: 550px; 
}
.HeroSectionWithSlidesSection .MainSliderWidhText .slidewrap .ContactWrap a {
    color: var(--black-color);
}
.slidewrap img{
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
}
.slidewrap .container{
    position: relative;
    z-index: 10;
    height: 650px;
    display: flex;
    place-items: center;
}
.slidewrap .container h1,
.slidewrap .container h2{
    color: var(--black-color);
}
.MainSliderWidhText .slick-list{ border-radius: 0; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0;
}
.MainSliderWidhText .ContactWrap {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
    margin-top: 50px;
}
ul.slick-dots {
    position: absolute;
    bottom: 0;
    margin: 0;
    list-style: none;
    padding: 0;
}
.MainSliderWidhText ul.slick-dots{
    position: absolute;
    left: calc(50% - 25px);
    bottom: 20px;
}
.MainSliderWidhText ul.slick-dots li{
    display: inline-block;
    margin-right: 10px;
}
.MainSliderWidhText ul.slick-dots li:last-child{
    margin-right: 0;
}
.MainSliderWidhText ul.slick-dots li button{
    height: 20px;
    width: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--gray-color);
    font-size: 0;
}
.MainSliderWidhText ul.slick-dots li.slick-active button{
    background-color: var(--primary-color);
}
.MainSliderWidhText .btn-yellow{
    background-color: var(--yellow-color);
    border: 1px solid transparent;
    color: var(--black-color);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.MainSliderWidhText .btn-yellow:hover{
    border: 1px solid var(--white-text);
    background-color: var(--primary-color);
    color: var(--white-text);
}
.OurFeaturesOuterWrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:30px;
    align-items: center;
    align-content: center;
  }
  
  .OurFeaturesOuterWrap > div:nth-child(2),  .OurFeaturesOuterWrap > div:nth-child(5) {
    grid-column: span 2;
    background-color: transparent;
    text-align: center;
    padding: 0;
  }
  .FeatureboxWrap h2 {
    font-size: 50px;
  }
.FeatureboxWrap h2 span{
    color: var(--primary-color);
}
  
  .OurFeaturesOuterWrap .FeatureboxWrap {
    background:var(--gray-color);
    color: var(--black-color);
    border-radius: 15px;
    text-align: left;
    padding: 20px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.OurFeaturesOuterWrap .FeatureboxWrap span.Number {
    font-size: 50px;
    color:var(--primary-color);
    display: block;
    text-align: right;
    font-weight: 600;
    opacity: .3;
}
.OurFeaturesOuterWrap .FeatureboxWrap .iconWrap{
    height: 60px;
    width: 60px;
    display: block;
    align-items: center;
    align-content: center;
    background-color: var(--white-text);
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-bottom: 20px;
}
.OurFeaturesOuterWrap .FeatureboxWrap h3{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
.WhyUsForStaffingSection{
    background-image: url(../images/staffing/parallax-bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top 50%;
}
.WhyUsForStaffingSection h2 span{
    color: var(--primary-color);
}
.WhyUsForStaffingSection ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.WhyUsForStaffingSection ul li{
    position: relative;
    padding-left: 40px;
}
.WhyUsForStaffingSection ul li::before{
    content: "\f270";
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 8px;
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--dark-green);
}
.WhyUsForStaffingSection img{
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
/************* About US Page CSS *************/
.HeroSectionWithoutSlidesSection{
position: relative;
overflow: hidden;
height: 650px;
padding: 0;
background-image: url(../images/about-us/main-banner-bg.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: top center;
}
.HeroSectionWithoutSlidesSection:before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    background: rgb(232,232,232);
    background: linear-gradient(90deg, rgba(232, 232, 232, 0.753) 35%, rgba(71,45,115,0) 70%);
}
.HeroSectionWithoutSlidesSection h2{
    font-size: 40px;
    color: var(--black-color);
}
.HeroSectionWithoutSlidesSection .container{
    height: 650px;
    position: relative;
    z-index: 10;
    align-items: center;
    align-content: center;
}
.HeroSectionWithoutSlidesSection .container .ContactWrap {
    justify-content: start;
    gap: 30px;
    margin-top: 50px;
}
.HeroSectionWithoutSlidesSection .container .ContactWrap a{
    color: #000;
}
.HeroSectionWithoutSlidesSection .container h1{
    font-size: 36px;
    margin-bottom: 20px;
}
.HeroSectionWithoutSlidesSection .container h2{
    color:#6A6A6A;
    font-size: 22px;
}
.HeroSectionWithoutSlidesSection .container .btn-yellow {
    border-radius: 20px;
    padding: 10px 25px;
    font-weight: 500;
}

 .OurStory h2{
    font-size: 30px;
 }
 .OurStory h4{
    font-size: 24px;
 }
.OurStroryImgWrap{
    background-image: url(../images/about-us/our-story-imgs-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    padding-bottom:20px ;
    display: flex;
    gap: 30px;
    animation: moveBackground 6s infinite ease-in-out;
    padding-bottom: 150px;

}
.OurStroryImgWrap img{
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.OurStroryImgWrap img:nth-child(2){
    margin-top: 50px;
    margin-bottom: -50px;

}
@keyframes moveBackground {
    0% {
      background-position: 0 0;
    }
    25% {
      background-position: 10px 10px;
    }
    50% {
      background-position: 0 20px;
    }
    75% {
      background-position: -10px 10px;
    }
    100% {
      background-position: 0 0;
    }
  }
  .OurExpansionContentWrap{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:30px;
    align-items: center;
    align-content: center;
    text-align: center;
  }
  .OurExpansionContent h3 {
    font-size: 36px;
    font-weight: 600;
  }
  .OurExpansionContent h3 span{
    font-size: 36px;
    font-weight: 500;
  }
  .OurExpansionContent h3.color1{
    color: #3691CF;
  }
  .OurExpansionContent h3.color2{
    color: #9F75AE;
  }
  .OurExpansionContent h3.color3{
    color: #E6528E;
  }
  .OurExpansionContent h3.color4{
    color: #F1AD25;
  }
  .OurExpansionContent span {
    font-size: 18px;
    font-weight: 500;
}
  .timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    height: 400px;
}

.timeline::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color:var(--black-color);
    top: 50%;
    left: 0;
    z-index: 1;
}

.timeline-item {
    position: relative;
    text-align: center;
    flex: 0 0 auto;
    width: 100px;
    z-index: 2;
}

.timeline-item .circle {
    width: 100px;
    height: 100px;
    color: var(--white-text);
    background-color: #6a0dad;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border: 5px solid #fff;
    top: 0px;
    display: block;
    align-content: center;
    text-align: center;
    z-index: 11;
}

.timeline-item .TimelineContentBox {
    position: absolute;
    width: 200px;
    left: calc(100% - 150px);
    height: 80px;
}
.timeline-item:nth-child(odd) .TimelineContentBox{
    bottom: 180px;
}
.timeline-item:nth-child(even) .TimelineContentBox{
    top: 180px;
}
.timeline-item:nth-child(odd) .circle::before {
    content: "";
    position: absolute;
    height: 100px;
    width: 6px;
    bottom: 0;
    background-color: #E652B0;
    bottom: 55px;
    left: 42px;
    background-color: #E652B0;
    z-index: 10;
}
.timeline-item:nth-child(odd) .circle::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;    
    bottom: 140px;
    left: 35px;
    z-index: 10;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.timeline-item:nth-child(even) .circle::after {
    content: "";
    position: absolute;
    height: 100px;
    width: 6px;
    background-color: #FC4261;
    bottom: -60px;
    left: 42px;
    z-index: 10;
}
.timeline-item:nth-child(even) .circle::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    bottom: 0;
    bottom: -60px;
    left: 35px;
    z-index: 10;
}
.timeline-item.year-2019 .circle::before,.timeline-item.year-2019 .circle::after{
    background-color: #E652B0;
}
.timeline-item.year-2020 .circle::before,.timeline-item.year-2020 .circle::after{
    background-color: #FC4261;
}
.timeline-item.year-2021 .circle::before,.timeline-item.year-2021 .circle::after{
    background-color: #24A400;
}
.timeline-item.year-2022 .circle::before,.timeline-item.year-2022 .circle::after{
    background-color: #1294DE;
}
.timeline-item.year-2024 .circle::before,.timeline-item.year-2024 .circle::after{
    background-color: #00B398;
}
.timeline-item.year-2025 .circle::before,.timeline-item.year-2025 .circle::after{
    content: "";
    display: none;
}



.timeline-item span {
    display: block;
    font-weight: 500;
    font-size:20px;
    color: #6a0dad;
    margin-top: 10px;
}
.year-2019 span{
    color: #E652B0;
}
.year-2020 span{
    color: #FC4261;
}
.year-2021 span{
    color: #24A400;
}
.year-2022 span{
    color: #1294DE;
}

.year-2024 span{
    color: #00B398;
}
.year-2025 span{
    color: #5C42FC;
}
.timeline-item p {
    margin: 5px 0 0;
    font-size: 14px;
}

.timeline-item:first-child .circle {
    background-color: #E652B0;
    border-color: #F977C9;
}

.timeline-item:nth-child(2) .circle,.timeline-item:nth-child(3) .circle,.timeline-item:nth-child(4) .circle {
    background-color: #FC4261;
    border-color: #FF607A;
}

.timeline-item:nth-child(5) .circle {
    background-color: #24A400;
    border-color: #32C10B;
}

.timeline-item:nth-child(6) .circle {
    background-color: #1294DE;
    border-color: #24A4EE;
}

.timeline-item:nth-child(7) .circle {
    background-color: #00B398;
    border-color: #1BCEB3;
}

.timeline-item:last-child .circle {
    background-color: #5C42FC;
    border-color: #7F6AFF;
}
/************** HR Page CSS***************/
.HeroSectionWithoutSlidesSection.hr-services_herro {
    background-image: url(../images/hr-services/main-banner-bg.jpg);
}
.HeroSectionWithoutSlidesSection.hr-services_herro:before {
    background: rgba(232, 232, 232, 0.863);
    background: linear-gradient(90deg, rgba(232, 232, 232, 1) 36%, rgb(232 232 232 / 54%) 70%);
}
.HRSolutionsServiceWrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.HeroSectionTextwrap a.btn-yellow:hover{
background-color: var(--primary-color);
color: var(--white-text);
}
.HRSolutionsServiceWrap .HRSolutionsServiceBox{
    display: flex;
    align-items: center;
    align-content: center;    
}
.HRSolutionsServiceWrap .HRSolutionsServiceBox .IconWrap{
    width: 50px;
    height: 50px;
    background-color: var(--white-text);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    padding: 9px;
    box-shadow: 0 0 4px rgba(0,0,0, .2);
}
.HRSolutionsServiceWrap .HRSolutionsServiceBox h3{
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
}
.HeroSectionWithoutSlidesSection .container .ContactForm h2{
    color: #FFD900 ;
    margin-bottom: 5px;
}
.ContactForm p{
    color: #fff;
    margin-bottom: 0px;
}
.ContactForm {
    background-color: #1F0174;
    padding: 50px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.ContactForm  input[type="submit"]:hover,.ContactUsForm input[type="submit"]:hover{
    background-color: var(--primary-color);
    color: white;
    transition: background-color 0.3s;
  }
  .ContactForm  .row >div {
    position: relative;
  }
  .ContactForm  .row .invalid-feedback {
    position: absolute;
    bottom: -20px;
}
.UnlockYourOrganization img{
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.UnlockYourOrganization h2{
    font-size: 30px;
    margin-bottom: 20px;
}
.UnlockYourOrganization ul{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 30px;
}
.UnlockYourOrganization ul li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}
.UnlockYourOrganization ul li::before{
    content: "\f270";
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 3px;
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--primary-color);
}
.AdvantagesofWorkingwithTechvibz h2{
    font-size: 30px;
}
.AdvantagesOuterWrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    align-content: center;
    text-align: center;
}
.AdvantagesOuterWrap .AdvantagesOuterBox{
    background-color: var(--white-text);
    padding: 50px 30px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.AdvantagesOuterWrap .AdvantagesOuterBox h3{
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0 10px 0;
}
.PersonalAssistance{
    padding: 40px;
}
.PersonalAssistanceContentWrap{
    position: relative;
    background-image: url(../images/hr-services/PersonalAssistance-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    overflow: hidden;
    z-index: 10;
    padding: 40px 20px;

}
.PersonalAssistanceContentWrap::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(31,0,116);
    background: linear-gradient(76deg, rgba(31,0,116,1) 0%, rgba(30,6,113,1) 41%, rgba(71,45,115,1) 100%);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    opacity: .8;
    z-index: 9;
}
.PersonalAssistanceContentWrap h2{
    font-size: 30px;
    color: var(--white-text);
    position: relative;
    z-index: 11;
    margin-bottom: 20px;
    font-weight: 500;
}
.PersonalAssistanceContentWrap .PersonalAssistanceContactWrap{
    position: relative;
    z-index: 11;
    display: flex;
    gap: 20px 30px;
    align-items: center;
    align-content: center;
    text-align: center;
    justify-content: center;
}
.PersonalAssistanceContentWrap .PersonalAssistanceContactWrap .btn{
    padding: 10px 30px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    color: var(--black-color);
}
.PersonalAssistanceContentWrap .PersonalAssistanceContactWrap a{
    color: var(--white-text);
    font-size: 18px;
}
.PersonalAssistanceContentWrap .PersonalAssistanceContactWrap .btn:hover{
    background-color: var(--primary-color);
    color: var(--white-text);
}
/*************** Contact Us ********************/
header.header a.btn.btn-primary.active{
    background-color: var(--primary-color);
}
.Contact-Us-herro{
    background-image: url(../images/contact-us/main-banner-bg.jpg);
    background-position: right center;
}
.Contact-Us-herro::before{
    display: none;
}
.ContactUsForm{
    padding: 30px;
    background-color: var(--gray-color);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.ContactUsForm h1{
    font-size: 24px;
}
.MapSection ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.MapSection ul li{
    margin-bottom: 15px;
}
.MapSection ul li,.MapSection ul li a{
    color: var(--black-color);
}
.MapSection ul li i,.MapSection ul li a i{
    color: var(--primary-color);
}
.RetailTrangingHeroSectionSection h1 span {
color: var(--primary-color);
}
.RetailTrangingHeroSectionSection h2{
    color: #6A6A6A;
    font-size: 20px;
    margin-bottom: 30px;
    margin-top: 20px;
}
.RetailTrangingHeroSectionSection video{
    height: 450px;
}
.FlexibleOnlineTraining img{
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.FlexibleOnlineTraining h2{
    margin-bottom: 20px;
}
.FlexibleOnlineTraining span{
    color: var(--primary-color);
}
.HappyandSatisfiedLearners{
    position: relative;
    background-image: url(../images/online-training/happy-students.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */    
    z-index: 9;
}
.HappyandSatisfiedLearners::before{
    content: "";
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    z-index: 10;
}
.HappyandSatisfiedLearners h2{
    color: var(--white-text);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
   
}
.HappyandSatisfiedLearners .container{
    position: relative;
    z-index: 11;
    text-align: center;
}
.HappyandSatisfiedLearners .btn{
    padding: 8px 30px;
    font-size: 16px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border: 1px solid transparent;
}
.HappyandSatisfiedLearners .btn:hover{
    background-color: var(--primary-color);
    color: var(--white-text);
    border-color: var(--white-text);
}
.WeloveourStudents{
    padding-bottom: 100px;
}
.GoogleRatingTop{
    display: flex;
    gap: 10px;
    text-align: center;
    align-items: center;
    align-content: center;
    margin: 0 auto;
    width: 320px;
    margin-top: 20px;

}
.GoogleRatingTop h4{
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 0;
}
.GoogleRatingTop .StartWrap i{
    color: var(--dark-yellow);
}
.googleReviewsWrap{
    margin-top: 30px;
}
.googleReviewsWrap .googleReviewBox{
    background-color: var(--white-text);
    padding: 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    height: 360px;
    margin: 0 15px;

}
.googleReviewsWrap .googleReviewBox .TopStarAndLogBox{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.googleReviewsWrap .googleReviewBox .TopStarAndLogBox .StartWrap i{
    color: var(--dark-yellow);
}
.googleReviewsWrap .googleReviewBox h3{
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}
.googleReviewsWrap .googleReviewBox p{
    color: #78787B;
    margin-bottom: 0;
}

.googleReviewsWrap ul.slick-dots{
    position: absolute;
    left: calc(50% - 25px);
    bottom: -40px;
}
.googleReviewsWrap ul.slick-dots li{
    display: inline-block;
    margin-right: 10px;
}
.googleReviewsWrap ul.slick-dots li:last-child{
    margin-right: 0;
}
.googleReviewsWrap ul.slick-dots li button{
    height: 20px;
    width: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #D9D9D9;
    font-size: 0;
}
.googleReviewsWrap ul.slick-dots li.slick-active button{
    background-color: var(--primary-color);
}
.TechnologiesWeTrainOurStudents{
    background-color: var(--primary-color);
    background-image: url(../images/online-training/bg-second-section.png);
    background-repeat: repeat;
    background-position: top right;
    overflow: hidden;
    background-size: 50px 50px;
}
.TechnologiesWeTrainOurStudents h2{
    font-size: 24px;
    color: var(--white-text);
}
.TechnologiesLogosWrap{
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(6,1fr);
    align-items: center;
    align-content: center;
    text-align: center;
}
.TechnologiesLogosWrap >div {
    background-color: var(--white-text);
    padding: 5px;
    text-align: center;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.TechnologiesLogosWrap >div img{
    width: 80px;
    height: 80px;
}
.TechnologiesLogosWrap >div h6{
    font-size: 14px;
    margin-top: 10px;
}
.AdvantagesofTechvibz .AdvantagesOuterWrap{
    margin-top: 30px;
}
.AdvantagesofTechvibz .AdvantagesOuterWrap .AdvantagesOuterBox{
    background-color: var(--gray-color);
    height: 280px;
}
.ContactUsSection{
    background-image: url(../images/online-training/contact-us-bg.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    position: relative;
    z-index: 9;   
}
.ContactUsSection::before{
    content: "";
    background-color: var(--gray-color);
    position: absolute;
    width: 50%;
    position: absolute;
    z-index: 10;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .7;
}
.ContactUsSection .container{
    position: relative;
    z-index: 11;
}
.ContactUsSection .contactForm{
    padding: 20px 30px 0 0
}
/************** Blog Page CSS**************/
section.BlogHeroSection{
    background-image: url(../images/blog/blog-hero-bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.BlogOuterWrap{
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.BlogOuterWrap .BlogBox .BlogImgBoxWrap{
    position: relative;
}
.BlogOuterWrap .BlogBox .BlogImgBoxWrap .CategoryWrap{
    position: absolute;
    bottom: 10px;
    left: 10px;

}
.BlogOuterWrap .BlogBox .BlogImgBoxWrap .CategoryWrap .CategoryName{
    font-size: 12px;
    display: inline-block;
    padding: 5px 10px;
    color: var(--white-text);
    background: linear-gradient(76deg, rgba(31,0,116,1) 0%, rgba(30,6,113,1) 41%, rgba(71,45,115,1) 100%);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-right: 5px;
    text-align: center;

}
.BlogOuterWrap .BlogBox .BlogImgBoxWrap .DateWrap{
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: var(--primary-color);
    width: 80px;
    height: 80px;
    display: block;
    align-items: center;
    align-content: center;
    text-align: center;
    color: var(--white-text);
    border-radius: 10px 0 0 0;
    -webkit-border-radius: 10px 0 0 0;
    -moz-border-radius: 10px 0 0 0;
    -ms-border-radius: 10px 0 0 0;
    -o-border-radius: 10px 0 0 0;
    font-size: 14px;
}
.BlogOuterWrap .BlogBox h2.card-title{
    font-size: 20px;

}
.active>.page-link, .page-link.active {
    background-color: #1e0073;
    border-color: #1f0074;
}
.blog-sidebar {
    padding: 20px;
    background: #f4f4f4; /* Light background */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
.blog-sidebar >div {
    margin-bottom: 30px;
}
  .search-box {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
  }
  
  .search-box input {
    flex: 1;
  }
  .search-box button.btn.btn-outline-primary {
    background-color: var(--primary-color);
    color: var(--white-text);
}
.latest-blogs-widget h3,
  .categories h3,
  .tags h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .categories ul {
    list-style: none;
    padding: 0;
  }
  
  .categories ul li {
    margin-bottom: 8px;
  }
  
  .categories ul li a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
  }
  
  .categories ul li a:hover {
    color:var(--primary-color);
  }
  
  .tags .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .tagstyle {
    display: inline-block;
    background-color:var(--primary-color);   
    color: white;
    padding: 4px 15px;
    font-size: 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
}
  
  .tagstyle:hover {
    background: linear-gradient(76deg, rgba(31,0,116,1) 0%, rgba(30,6,113,1) 41%, rgba(71,45,115,1) 100%);
  }
  

  
  
  .latest-blogs-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .latest-blogs-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .latest-blogs-list li a {
    display: flex;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
  }
  
  .latest-blogs-list li a:hover {
    color: #007bff;
  }
  
  .latest-blogs-list img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
    margin-right: 12px;
  }
  
  .blog-info h4 {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
  }
  
  .blog-date {
    font-size: 12px;
    color: #666;
  }
  .BlogDetailHeroSection{
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 400px;
    position: relative;
    overflow: hidden;
    z-index: 8; 
  }
  
  /*
  .BlogDetailHeroSection::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;    
    height: 100%;
    width: 100%;
    z-index: 9;
    background: linear-gradient(76deg, rgba(31,0,116,1) 0%, rgba(30,6,113,1) 41%, rgba(71,45,115,1) 100%);
    opacity: .8;
  }
  */
  
  .BlogDetailHeroSection .container{
    position: relative;
    z-index: 11;
  }
  .BlogDetailHeroSection h1{
    color: var(--white-text);
  }
  .BlogDetailHeroSection .CategoryWrap .CategoryName{
    font-size: 12px;
    display: inline-block;
    padding: 5px 10px;
    color: var(--white-text);
    background: linear-gradient(76deg, rgba(31,0,116,1) 0%, rgba(30,6,113,1) 41%, rgba(71,45,115,1) 100%);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-right: 5px;
    text-align: center;

}
.BlogDetailHeroSection .DateWrap{
    display: block;
    text-align: center;
    color: var(--white-text);
    font-size: 14px;
    margin: 20px auto;
}


@media only screen and (min-width:1400px) and (max-width:3600px) {
     
 
    .KeyFeaturesBenifitsrightWrap .KeyFeatureBox:nth-child(1){
        margin-left: -15%;
        margin-top: 10%;
     
    }
    
    .KeyFeaturesBenifitsrightWrap .KeyFeatureBox:nth-child(2){
        margin-left:-2%;
      
    }
    .KeyFeaturesBenifitsWrap .KeyFeatureBox:nth-child(1){
        margin-right: -15%;
        margin-top: 10%;
     
    }
    
    .KeyFeaturesBenifitsWrap .KeyFeatureBox:nth-child(2){
        margin-right: -3%;
    
    }
    .KeyFeaturesBenifitsWrap .KeyFeatureBox:nth-child(3){
        margin-right: -3%;
      
    } 
    
}
@media only screen and (max-width: 1500px) {

.HeroSectionWithoutSlidesSection.hr-services_herro .container h1 {
    font-size: 30px;
}
.HeroSectionWithoutSlidesSection.hr-services_herro, .HeroSectionWithoutSlidesSection.hr-services_herro .container{
    height: 550px;
}
.ContactForm {
    padding: 20px;
}
.ContactForm p {
    font-size: 14px;
}
.HRSolutionsServiceWrap {
    gap: 20px;
    margin-top: 20px;
}
.HeroSectionWithoutSlidesSection.hr-services_herro .container .ContactWrap {
    margin-top: 40px;
}
.UnlockYourOrganization ul {
    margin-top: 20px;
}
.UnlockYourOrganization ul li {
    margin-bottom: 10px;
}
.AdvantagesOuterWrap .AdvantagesOuterBox {
    height: 235px;
    padding: 30px;
}
.HeroSectionWithoutSlidesSection.Contact-Us-herro, .HeroSectionWithoutSlidesSection.Contact-Us-herro .container {
    height: 550px;
}
.TechnologiesWeTrainSection .TechnologiesWeTrain div.slick-slide {
    height: 150px;
}
.TechnologiesWeTrainSection .TechnologiesWeTrain img{
    height: 80px;

}
}
  @media only screen and (max-width: 1400px) {
    section{
        padding: 50px 0;
    }
    .header .topbar {
        padding: 10px 0;
    }
    .ContactWrap a {
        font-size: 14px;
    }
    .ContactWrap .TopmailWrap a i, .ContactWrap .TopNumberWrap a i {
        margin-right: 5px;
    }
    .SocialLinksWrap a {
        font-size: 14px;
    }
    .SocialLinksWrap a:last-child i {
        margin-left: 5px;
    }
    .header a.navbar-brand img {
        width: 150px;
    }
    .header .navbar-nav .nav-link {
        padding: 0 8px;
        font-weight: 300;
        font-size: 12px;
    }
    .header .navbar a.btn-primary {
        padding: 4px 15px;
        font-weight: 400;
        font-size: 14px;
    }
    .HeroSection {
        height: 53vh;
    }
    section.HeroSection.HomeMainerbanner {
        height: 100vh;
    }
    .HeroSection .ContactWrap a {
        font-size: 14px;
    }
    .HeroSection .ContactWrap a i {
        margin-right: 5px;
    }
    .HeroSection .ContactWrap a.btn-primary {
        font-size: 14px;
    }
    .WhoWeAreContentWrap {
        overflow-y: scroll; 
        height: 455px; 
      }
      
      .WhoWeAreContentWrap::-webkit-scrollbar {
        width: 8px;
      }
      
      .WhoWeAreContentWrap::-webkit-scrollbar-thumb {
        background: linear-gradient(45deg, #8f8f8f, #aaaaaa); 
        border-radius: 10px;
      }
      .HighlitedBoc .HilightTextWrap h2 {
        font-size: 30px;

    }
    .HilightWrapSlides {
        max-width: 400px;
    }
    .KeyFeaturesBenifitsWrap .KeyFeatureBox:nth-child(1) {
        margin-right: -17%;
        margin-top: 10%;
    }
    .KeyFeaturesBenifitsrightWrap .KeyFeatureBox:nth-child(1) {
        margin-left: -17%;
        margin-top: 10%;
    }
    .MainSliderWidhText .slidewrap,.slidewrap .container {
        height: 550px;
    }
    .OurFeaturesOuterWrap .FeatureboxWrap h3 {
        font-size: 16px;
    }
    .OurFeaturesOuterWrap .FeatureboxWrap span.Number {
        font-size: 40px;
    }
    .OurStroryImgWrap {
        gap: 15px;
    }
    .HeroSectionWithoutSlidesSection,.HeroSectionWithoutSlidesSection .container {
        height: 450px;
    }
    .googleReviewsWrap .googleReviewBox{
        height: 310px;    
    }
  }
  @media only screen and (max-width: 1200px) {
    h1{font-size: 30px;}
    h2{font-size: 26px;}
 
    .KeyFeaturesBenifitsContentwrap .KeyFeaturesBenifitsCenterOuterWrapper { 
        width: 350px;
        height: 350px;
    }
    .KeyFeaturesBenifitsContentwrap .KeyFeaturesBenifitsCenterinnerWrapper {           
        width: 200px;
        height: 200px;
        border: 10px solid var(--primary-color);
    }
    .KeyFeatureBox {
        margin-bottom: 20px;
        font-size: 12px;
    }
    .KeyFeaturesBenifitsContentwrap .KeyFeaturesBenifitsCenterinnerWrapper h2 {
        font-size: 20px;
    }
    .NewKeyFeaturesandBenifitsSection  img {
        width: 60%;
    }
    .KeyFeaturesBenifitsrightWrap .KeyFeatureBox:nth-child(1){
        margin-left: -25%;         
    }        
    .KeyFeaturesBenifitsrightWrap .KeyFeatureBox:nth-child(2){
        margin-left:-15%;          
    }
    .KeyFeaturesBenifitsWrap .KeyFeatureBox:nth-child(1){
        margin-right: -25%;         
    }
    
    .KeyFeaturesBenifitsWrap .KeyFeatureBox:nth-child(2){
        margin-right: -15%;        
    }
    .MaximizingGrowthSection h2 {
        font-size: 30px;
    }
    .GrowthKeyWrap {
        min-height: 280px;
    }
    .KeyFeatureBox .KeyFeatureTextBox h4 {
        font-size: 15px;
    }
    .MainSliderWidhText .slidewrap, .MainSliderWidhText .slidewrap .container {
        height: 350px;
    }
    .OurStroryImgWrap {
        background-size: contain;
    }
    .OurStory h4  {
        font-size: 16px;

    }
    .OurStory h2 {
        font-size: 24px;
    }
    .OurStroryImgWrap .img-fluid {
        max-width: 45%;
    }
    .AdvantagesOuterWrap {
        gap: 20px;
    }
    .AdvantagesOuterWrap .AdvantagesOuterBox h3 {
        font-size: 16px;
        margin: 15px 0 10px 0;
    }
    .AdvantagesOuterWrap .AdvantagesOuterBox p {
        font-size: 14px;
        margin: 0;
    }
    .TechnologiesLogosWrap >div {
        height: 135px;
    }
    .googleReviewsWrap .googleReviewBox {
        height: 260px;
    }
    .googleReviewsWrap ul.slick-dots {
        left: calc(50% - 70px);
    }
    .RetailTrangingHeroSectionSection  h1 {
        font-size: 24px;
    }
    .RetailTrangingHeroSectionSection h2{
        font-size:18px;
    }
    .HeroSection.HeroSectionCorporateSetion {
        height: 550px;
    }
    .BlogOuterWrap {
        grid-template-columns: repeat(2, 1fr);
    }
}
  @media only screen and (max-width: 991px) {
    header.header  {
        position: fixed !important;
        background: var(--blue-color);
        top: 0;
        z-index: 9999;
     }
    header.header.scrolled .topbar {
        display: block;

    }
    .header a.navbar-brand img {
        margin-top: -15px;
    }
    body {
        padding-top: 84px;
    }
     

    /* header.header.scrolled {
        height: 45px;
    } */
    header.header  nav.navbar {
        padding-bottom: 15px !important;
    }
    header.header  nav.navbar .d-flex {
        display: inline-grid !important;
        width: 100%;
        justify-content: start;
    }
    header.header  nav.navbar a.btn-primary,header.header  nav.navbar a.btn-primary:hover{
        background-color: transparent;
        border: 0;
        padding: 0;
        margin: 0 10px;
        display: none;
        font-size: 14px;
    }
    header.header .navbar-collapse.collapse.show + .d-flex a.btn-primary, header.header .navbar-collapse.collapse.show + .d-flex a.btn-primary:hover{
        display: block;
    }
   
    .header a.navbar-brand img {
        margin-bottom: 0;
    }
    nav.navbar {
        position: relative;
    }
    header.header nav.navbar.navbar-expand-lg .navbar-collapse {
        width: 100%;
    }
    .header .navbar-nav li.nav-item {
        margin: 5px 0;
    }
    .HeroSection {
        height: 500px;
        padding-top: 0;
    }
    section.HeroSection.HomeMainerbanner {
        height: 50vh;
        padding-top: 50px;
    }
    .HeroSection h1 {
        font-size: 20px;
        padding-right: 0;
        line-height: 26px;
    }
    .HeroSection video.slick-slide {
        height: 250px;
    }
    .HeroSection .ContactWrap {
        display: grid;
        gap: 10px;
    }
    .WhoWeAreContentWrap {
        overflow-y: auto;
        height: auto;
    }
    .OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap h4 {
        font-size: 10px;
        font-weight: 500;
        margin-top: 10px;
    }
    .OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap img {
        height: 45px;
        width: 45px;
        margin-top: 10px;
    }
    .OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap {
        padding-bottom: 10px;
        height: 100px;
    }
    .OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(11),
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(12),
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(13),
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(14),
.OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(15){
    padding-bottom: 0;
    height: 90px;
}
    .HappyClientsWrap button.slick-prev.slick-arrow {
        left: calc(37% - 15px);
    }
    .blogcard {
        margin-bottom: 30px;
    }
    .KeyFeaturesBenifitsWrap .KeyFeatureBox:nth-child(1){
        margin-right: -25%;         
    }
    
    .KeyFeaturesBenifitsWrap .KeyFeatureBox:nth-child(2){
        margin-right: -25%;
    
    }
    .KeyFeaturesBenifitsrightWrap .KeyFeatureBox:nth-child(1){
        margin-left: -25%;
    } 
    .KeyFeaturesBenifitsrightWrap .KeyFeatureBox:nth-child(2){
        margin-left: -25%;
    }
    .KeyFeaturesBenifitsContentwrap .KeyFeaturesBenifitsCenterOuterWrapper {
    width: 300px;
    height: 300px;
    }
    .KeyFeaturesBenifitsContentwrap .KeyFeaturesBenifitsCenterinnerWrapper {
        width: 180px;
        height: 180px;
        border-width: 8px;
    }
    .KeyFeaturesBenifitsContentwrap .KeyFeaturesBenifitsCenterinnerWrapper h2{
        font-size: 18px;
    }
    .KeyFeaturesBenifitsContentwrap .KeyFeaturesBenifitsCenterinnerWrapper img{
        width: 80%;
    }
    .KeyFeatureBox {
        margin-bottom:15px;
        font-size: 12px;
    }
    .ContactWrap a {
        font-size: 12px;
    }
    .HeroSection.HeroSectionCorporateSetion {
        height: 400px;
    }
    .HighlitedBoc {
        grid-template-columns: repeat(1, 1fr);
    }
    .MaximizingGrowthKeyWrapPer { 
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .MainSliderWidhText .slidewrap{
        height: 280px;
    }

    .slidewrap .container h1, .slidewrap .container h2 {
        font-size: 20px;
    }
    .OurFeaturesOuterWrap >div:nth-child(1){
        order: 2;
    }
    .OurFeaturesOuterWrap >div:nth-child(2){
        order: 1;
    }
    .OurFeaturesOuterWrap >div:nth-child(3){
        order: 3;
    }
    .OurFeaturesOuterWrap >div:nth-child(4){
        order: 4;
    }
    .OurFeaturesOuterWrap >div:nth-child(5){
        order: 6;
    }
    .OurFeaturesOuterWrap >div:nth-child(6){
        order: 5;
    }
    .OurFeaturesOuterWrap {        
        align-items:self-start;
        align-content: center;
    }
    .OurFeaturesOuterWrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px 0;
    }
    .OurFeaturesOuterWrap > div:nth-child(2), .OurFeaturesOuterWrap > div:nth-child(5) {
        grid-column: span 6;
    }
    .OurFeaturesOuterWrap >div:nth-child(1),
    .OurFeaturesOuterWrap >div:nth-child(3),
    .OurFeaturesOuterWrap >div:nth-child(4),
    .OurFeaturesOuterWrap >div:nth-child(6) {
        grid-column: span 1 / 1;
    }
    .OurExpansionContentWrap {
        gap: 15px;
    }
    .OurStory .container .row >div:nth-child(1){
        order: 2;
    }
    .OurStory .container .row >div:nth-child(2){
        order: 1;
    }
    .OurStroryImgWrap {
        margin-top: 30px;
    }
    .timeline {
        flex-direction: column;
        height: auto;
        padding-top: 0;
    }
    

        .timeline-item {
            margin-bottom: 40px;
            
        }
        .timeline-item:nth-child(odd) .TimelineContentBox {
            bottom: 0;
            left: -200px;
            text-align: left;
        }
        .timeline-item:nth-child(even) .TimelineContentBox {
            top: 0;
            left: 150px;
            text-align: left;
        }
        .timeline-item:nth-child(odd) .circle::before,.timeline-item:nth-child(odd) .circle::after {
            display: none;
        }
        .timeline-item:nth-child(even) .circle::after,.timeline-item:nth-child(even) .circle::before { 
            display: none;
    }

    .timeline-item .circle {
        width: 80px;
        height: 80px;
    }

        .timeline::before {
            height: 90%;
            width: 4px;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            padding-top: 0;
        }
        .timeline-item:last-child {
            margin-bottom: 30px;
        }
        .HeroSectionWithoutSlidesSection .container h1 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        .HeroSectionWithoutSlidesSection .container h2 {
            font-size: 18px;
        }
        .HeroSectionWithoutSlidesSection .container .ContactWrap {
            margin-top: 20px;
        }
        .HeroSectionWithoutSlidesSection.hr-services_herro .container h1 {
            font-size: 24px;
        }
        .HRSolutionsServiceWrap {
            gap: 10px;
        }
        .HRSolutionsServiceWrap .HRSolutionsServiceBox h3 {
            font-size: 14px;
        }
        .UnlockYourOrganization ul {
            margin-bottom: 30px;
        }
        .AdvantagesOuterWrap {
            grid-template-columns: repeat(2, 1fr);
        }
        .AdvantagesOuterWrap .AdvantagesOuterBox {
            height: auto;
        }
        .TechnologiesLogosWrap {
            grid-template-columns: repeat(4, 1fr);
        }
        .googleReviewsWrap .googleReviewBox {
            height: 360px;
        }
        .ContactUsSection::before {
            width: 100%;
            opacity: .5;
        }
        .RetailTrangingHeroSectionSection h1 {
            font-size: 20px;
        }
        .RetailTrangingHeroSectionSection h2 {
            font-size: 16px;
            margin-bottom: 20px;
            margin-top: 10px;
        }
        .RetailTrangingHeroSectionSection .btn-primary {
            padding: 10px 20px;  
        }
        .BlogDetailHeroSection {
            height: 300px;
        }
       
  }

@media only screen and (max-width: 767px) {
    

    body{font-size: 14px;}
    section {
        padding: 30px 0;
    }
    
    .ContactWrap
    {
        justify-content: center;
    }
    
h1{
    font-size: 24px;
}
h2{
    font-size: 20px;
}
h3{
    font-size: 16px;
}
h4{
    font-size: 14px;
}
h5{
    font-size: 13px;
}
h6{
    font-size: 12px;
}
body {
    padding-top: 78px;
}

.wpcf7-spinner
{
     margin-left: -20px;
}


i.bi.bi-facebook,
i.bi.bi-linkedin
{
    FONT-SIZE: 14px;
}

.top-contact-btn
{
    text-align:center;
}

.header a.navbar-brand img {
    margin-top: 4px;
}
    .HeroSection {
        height: 350px;
        padding-top: 40px;
    }
    section.HeroSection.HomeMainerbanner {
        height: 65vh;
        padding-top: 50px;
    }
    .HeroSection h1 {
        font-size: 12px;
        padding-right: 0;
        line-height: 20px;
        font-weight: 500;
    }
    .HeroSection video.slick-slide {
        height: 180px;
    }
    .HeroSection h1 br{
        display: none;
    }
    .HeroSection h1 span{
       margin-top: 5px;
    }
    .ourPartnersSection h2 {
        font-size: 14px;
    }
    button.slick-arrow {
        width: 20px;
        height: 20px;
        bottom: 10px;
        left: 15px;
        font-size: 8px;
    }
    button.slick-next.slick-arrow {
        left: 45px;
    }
    .HeroSection .ContactWrap {
        margin-top: 15px;
                justify-content: center;
    }
    .WhoWeAreContentWrap {
        margin-bottom: 20px;
    }
    .WhoWeAre .WhoWeAreContentWrap h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .WhoWeAre .WhoWeAreContentWrap p {
        margin-bottom: 10px;
        line-height: 18px;
    }
    .btn-primary {
        padding: 7px 15px;
        font-size: 12px;
    }
    .WhoWeAreSlide {
        width: 60%;
    }
    .Reviews img {
        width: 50%;
    }
    .BusinessSolutionContentWrap {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .BusinessSolutionContentWrap.BusinessSolutionRightBox {
        margin-left: 0;
        margin-right: 0;
    }
    .IndustriesWeEmpowerContentBox{
        margin: 5px;
    }
    .IndustriesWeEmpowerContentBox h3 {
        bottom: 15px;
        left: 15px;
        font-size: 13px;
    }
    .IndustriesWeEmpower .IndustriesWeEmpowerContentWrap button.slick-arrow {
        bottom: -20px;
        right: 20px;
    }
    .IndustriesWeEmpower .IndustriesWeEmpowerContentWrap button.slick-prev.slick-arrow {
        right: 40px;
    }
    .IndustriesWeEmpower .IndustriesWeEmpowerContentWrap button.slick-next.slick-arrow {
        right: 15px;
        left: auto;
    }
    .HappyClientsWrap p {
        font-size: 14px;
    }
    .HappyClientsWrap .HappyClientName {
        font-size: 14px;
        margin-top: 20px;
    }
    .HappyClientsWrap .HappyClientPosition {
        font-size: 12px;
        margin-top: 10px;
    }
    .HappyClientsWrap .slick-dots {
        bottom: 10px;
        left: calc(50% - 44px);

    }
    .HappyClientsWrap button.slick-arrow {
      border: 0;
    }
    .HappyClientsWrap button.slick-next.slick-arrow {
        right: calc(44% - 15px);
        bottom: 8px;
    }
    .HappyClientsWrap button.slick-prev.slick-arrow {
        bottom:7px;
    }
    .form-control {
        font-size: 12px;
        font-weight: 300;
        height: 40px;
    }
    .FormSection .mb-4{
        margin-bottom: 15px !important;
    }

    textarea.form-control {
        height: 80px;
    }
    .blogcardRight .card-body {
        padding: 10px 0;
    }
    .blogcard.blogcardRight .card-body .card-title {
        margin-bottom: 5px;
        font-size: 14px;
    }
    .blogcard.blogcardRight .card-body .BlogPostedAuthorAndDate {
        margin-bottom: 10px;
        line-height: 12px;
    }
    .blogcard .card-body .card-title {
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 5px;
    }
    .blogcard .card-body .BlogPostedAuthorAndDate { 
        margin-bottom: 10px;
    }
    .FooterTop {
        padding: 30px 0;
    }
    footer .FooterTop .col-sm-6{
        width: 50%;
    }
    .footer h4 {
        color: var(--yellow-color);
        margin-bottom: 15px;
    }
    .footer ul.FooterLinks li {
        position: relative;
        margin-bottom: 10px;
        padding-left: 15px;
    }
    .footer ul.FooterLinks li::before {
        top: 5px;
    }
    .footer ul.FooterLinks {
        margin-bottom: 20px;
    }
    .FooterContact li {
        margin-bottom: 10px;
    }
    .FollowUs a {
        font-size: 20px;
    }
    .FollowUs {
        gap: 10px;
    }
    .FooterTop img {
        margin-bottom:10px;
        width: 150px;
    }
    .FooterBottom {
        padding: 15px 0;
    }
    .KeyFeaturesBenifitsWrap .KeyFeatureBox{
        flex-direction: row;
        text-align: left;
        flex-wrap: wrap;
        flex-direction: row;
        width: 100%;
    }
    .KeyFeaturesBenifitsWrap .KeyFeatureBox{
        font-size: 14px;
    }
    .KeyFeaturesBenifitsWrap .KeyFeatureBox .KeyFeatureTextBox p{
        text-align: left;
        font-size: 14px;
    }
    
    .KeyFeatureBox >div{
        margin: 0;
        font-size: 14px;
    }
    .KeyFeaturesBenifitsrightWrap .KeyFeatureBox:nth-child(1),
    .KeyFeaturesBenifitsrightWrap .KeyFeatureBox:nth-child(2){
        margin-left: 0%;
    } 
    .KeyFeaturesBenifitsContentwrap .KeyFeaturesBenifitsCenterOuterWrapper {
        width: 250px;
        height: 250px;
    }
    .MaximizingGrowthKeyWrapPer {
        grid-template-columns: repeat(1, 1fr);
    }
    .MaximizingGrowthSection h2 {
        font-size: 24px;
    }
    .GrowthKeyWrap {
        min-height: auto;
    }
    .HighlitedBoc{
        padding: 15px;
    }
    .KeyFeatureBox .KeyFeatureTextBox h4 {
        text-align: left;
    }
    .KeyFeaturesBenifitsContentwrap .KeyFeatureBox {
        display: flex;
        place-items: normal;
    }
    .KeyFeaturesBenifitsContentwrap .KeyFeatureBox .KeyFeatureIconBox {
        float: left;
        position: static;
    }
    .KeyFeaturesBenifitsContentwrap .KeyFeatureBox .KeyFeatureTextBox {
        padding-top: 0;
        text-align: left;
        margin-bottom: 0;
    }
    .KeyFeaturesBenifitsSetion .container .row >div:nth-child(2){
        order: 1;
    }
    .KeyFeaturesBenifitsSetion .container .row >div:nth-child(1){
        order: 2;
    }
    .KeyFeaturesBenifitsSetion .container .row >div:nth-child(3){
        order: 3;
    }
    .KeyFeaturesBenifitsContentwrap .KeyFeaturesBenifitsCenterOuterWrapper {
        width: auto;
        height: auto;
        border: 0;
        display: block;
        text-align: left;
    }
    .KeyFeaturesBenifitsContentwrap .KeyFeaturesBenifitsCenterinnerWrapper {
        width: auto;
        height: auto;
        border-width: 0;
        display: block;
    }
    .KeyFeaturesBenifitsContentwrap .KeyFeaturesBenifitsCenterinnerWrapper h2{
        margin-bottom: 20px;
    }
    .KeyFeaturesBenifitsContentwrap .KeyFeaturesBenifitsCenterinnerWrapper h2 br{
        display: none;
        margin-bottom: 20px;
    }
    .KeyFeaturesBenifitsWrap .KeyFeatureBox:nth-child(1),.KeyFeaturesBenifitsrightWrap .KeyFeatureBox:nth-child(1) {
        margin-right: 0;
        margin-top: 0;
    }
    .HeroSection.HeroSectionCorporateSetion {
        height: 250px;
    }
    .MainSliderWidhText .slidewrap, .slidewrap .container {
        height: 200px;
    }
    .MainSliderWidhText .ContactWrap {
        margin-top: 0px;
    }
    .MainSliderWidhText ul.slick-dots {
        position: absolute;
        left: calc(50% - 25px);
        bottom: 10px;
    }
    .FeatureboxWrap h2 {
        font-size: 30px;
    }
    .OurExpansionContent h3,.OurExpansionContent h3 span {
        font-size: 24px;
    }
    .MainSliderWidhText ul.slick-dots li button {
        height: 10px;
        width: 10px;
    }
    .HeroSectionWithoutSlidesSection:before {
        background: linear-gradient(90deg, rgba(232, 232, 232, 0.897) 40%, rgba(71, 45, 115, 0) 80%);
    }
    .HeroSectionWithoutSlidesSection, .HeroSectionWithoutSlidesSection .container {
        height: 300px;
    }
    .timeline{
        padding: 0;
    }
    .AdvantagesofWorkingwithTechvibz h2 {
        font-size: 20px;
    }
    .HeroSectionWithoutSlidesSection.hr-services_herro:before {
        background: linear-gradient(90deg, rgba(232, 232, 232, 1) 36%, rgb(232 232 232 / 91%) 70%);
    }
    .HeroSectionWithoutSlidesSection.hr-services_herro, .HeroSectionWithoutSlidesSection.hr-services_herro .container {
        height: 820px;
    }
    .ContactForm {
        padding: 20px;
        margin-top: 25px;
    }
    .HeroSectionWithoutSlidesSection.hr-services_herro .container .ContactWrap {
        margin-top: 25px;
    }
    .googleReviewsWrap ul.slick-dots {
        left: calc(50% - 90px);
    }
    .googleReviewsWrap ul.slick-dots li button {
        height: 10px;
        width: 10px;
    }
    .TechnologiesLogosWrap >div {
        height: 120px;
    }
    .TechnologiesLogosWrap >div img {
        width: 60px;
        height: 60px;
    }
    .googleReviewsWrap .googleReviewBox {
        height: auto;
    }
    .ContactUsSection .contactForm {
        padding: 0;
        padding-top: 10px;
    }
    .OurExpansionContent span {
        font-size: 14px;
    }
    .TechnologiesLogosWrap >div h6 {
        font-size: 12px;
    }
    .GoogleRatingTop img {
        width: 100px;
    }
    
    .HeroSectionWithoutSlidesSection.Contact-Us-herro, .HeroSectionWithoutSlidesSection.Contact-Us-herro .container {
        height: auto;
        padding: 30px 10px;
    }
    
    .contact-us-form-btn
    {
        text-align:center;
    }
    
    section.FormSection form .col-sm-12.text-center {
        /** text-align: left !important; **/
    }
    
    
    .KeyFeaturesBenifitsWrap .KeyFeatureBox .KeyFeatureIconBox {
        margin-left: 0;
        margin-right: 0;
    }
    
    .navbar>.container
    {
        display: block;
        text-align: center;
    }
    
    .navbar-brand
    {
        margin-right: 0;
    }
    
    header.header .navbar-collapse.collapse.show + .d-flex a.btn-primary, header.header .navbar-collapse.collapse.show + .d-flex a.btn-primary:hover {
        display: block;
    }
    
    header.header nav.navbar .d-flex {
        display: block !important;
        text-align: center;
    }
    
}
@media only screen and (max-width: 666px) {
    .HeroSection {
        display: block;
    }
    .OurExpansionContentWrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .TechnologiesLogosWrap {
        grid-template-columns: repeat(3, 1fr);
    }
    
}
@media only screen and (max-width: 576px) {
    .HeroSection {
        height: 100vh;
        padding-top: 20px;
       
    }
    section.HeroSection.HomeMainerbanner {
        height: 84vh;
        padding-top: 20px;
    }
    .HeroSection h1 {
        font-size: 24px;
        padding-right: 0;
        line-height: 34px;
        font-weight: 500;
        margin-top: 30px;
    }
    .HeroSection .ContactWrap a.btn-primary {
        font-size: 12px;
        padding: 10px 20px;
    }
    .HeroSection video.slick-slide {
        height: 200px;
    }
    .HeroSection.HeroSectionCorporateSetion {
        height: 90vh;
    }
    .HeroSectionCorporateSetion  .MainLiseWrapSlidesWrap {
        margin-top: 20px;
    }
    .ourPartnersSection {
        margin-top: 25px;
    }
    .ourPartnersSection .col-sm-4{
        width: 25%;
    }
    .ourPartnersSection .col-sm-8{
        width: 75%;
    }
    .HeroSection .ContactWrap {
        margin-bottom: 15px;
    }
    .ourPartnersSection h2{
        text-align: left;
        border: 0;
        padding: 0;
        margin-right: 0;
        margin-bottom: 15px;
        word-spacing: 5px;
    }
    .ourPartnersSection h2 br{
        display: inline-flex;
    }
    .WhoWeAreSlide {
        width: 100%;
    }
    .OurAceTechnologiesContentWrap {
        grid-template-columns: repeat(3, 1fr) !important;        
    }
    .OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap{
        border: 1px solid #B8B8B8 !important;
        height: 100px;
    }
    .OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(11),
    .OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(12),
    .OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(13),
    .OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(14),
    .OurAceTechnologiesContentWrap .AceTechnologiesBoxWrap:nth-child(15){
        height: 100px;
    }

    .HappyClientsWrap button.slick-prev.slick-arrow {
        left: calc(33% - 15px);
    }
    .header a.navbar-brand img {
        width: 160px;
    }
    .header .navbar a.btn-primary {
        padding: 2px 15px;
        font-weight: 400;
        font-size: 12px;
        height: 24px;
        margin-top: 3px;
    }
    .HeroSection video.slick-slide {
        height: 250px;
        margin-top: 20px;
    }
    .HilightWrapSlides {
        max-width: 360px;
    }
    .HighlitedBoc .HilightTextWrap h2 {
        font-size: 20px;
    }
    .HighlitedBoc .HilightTextWrap ul {
        padding: 0;
        margin-bottom: 20px;
        font-size: 16px;
    }
    .HighlitedBoc .HilightTextWrap ul li:first-child {
        margin-bottom: 10px;
    }
    .slidewrap .container h1, .slidewrap .container h2 {
        font-size: 16px;
        font-weight: 500;
        width: 100%;
    }
    .OurStory h2 {
        font-size: 20px;
    }
    .timeline-item:nth-child(even) .TimelineContentBox {
        top: 0;
        left: 110px;
        width: 100px;

    }
    .timeline-item:nth-child(odd) .TimelineContentBox {
        left: -100px;
        width: 100px;
    }
    .timeline-item span {
        font-size: 16px;
        margin-top: 0px;
    }
    
    .HeroSectionWithoutSlidesSection, .HeroSectionWithoutSlidesSection .container {
        height: 300px;
    }
    .HeroSectionWithoutSlidesSection .HeroSectionTextwrap {
        width: 60%;
    }
    .HeroSectionWithoutSlidesSection .container h1 {
        font-size: 18px;
    }
    .HeroSectionWithoutSlidesSection .container h2 {
        font-size: 14px;
    }
    .HeroSectionWithoutSlidesSection .container .ContactWrap {
        display: inline-grid;
        gap: 10px;
    }
    .HeroSectionWithoutSlidesSection.hr-services_herro .container h1 {
        font-size: 22px;
    }
    .HeroSectionWithoutSlidesSection.hr-services_herro, .HeroSectionWithoutSlidesSection.hr-services_herro .container {
        height: 1000px;
    }
    .AdvantagesOuterWrap {
        grid-template-columns: repeat(1, 1fr);
    }
    .HeroSectionWithoutSlidesSection .HeroSectionTextwrap {
        width: 100%;
    }
    .HeroSectionWithoutSlidesSection.AboutUsHeroSection .HeroSectionTextwrap {
        width: 60%;
    }
    .PersonalAssistanceContentWrap .PersonalAssistanceContactWrap {
        display: inline-grid;
    }
    .PersonalAssistanceContentWrap h2 {
        font-size: 18px;
    }
    .UnlockYourOrganization h2 {
        font-size: 22px;
    }
    .PersonalAssistance {
        padding: 40px 0;
    }
    .PersonalAssistanceContentWrap h2 {
        font-size: 16px;
    }
    .PersonalAssistanceContentWrap .PersonalAssistanceContactWrap .btn {
        padding: 5px 20px;
        font-size: 14px;
    }
    .AdvantagesofTechvibz .AdvantagesOuterWrap .AdvantagesOuterBox {
        height: auto;
    }
    .RetailTrangingHeroSectionSection .container .row >div:first-child{
        order: 2;
    }
    .RetailTrangingHeroSectionSection .container .row >div:last-child{
        order: 1;
    }
    .RetailTrangingHeroSectionSection .btn-primary {
        margin-bottom: 20px;
    }
    .Reviews {
        margin-bottom: 20px;
    }
    .ReviewStarts {
        display: block;
        margin-top: 5px;

    }
    .BlogOuterWrap {
        grid-template-columns: repeat(1, 1fr);
    }
    .GoogleRatingTop {
        width: 280px;
    }
    .GoogleRatingTop h4 {
        font-size: 16px;
    }
    .MainSliderWidhText .slidewrap .container {
        height: 198px;
    }
    .MainSliderWidhText .slidewrap:before{

        background: linear-gradient(90deg, rgb(218, 218, 218) 0%, rgba(202, 202, 202, 0.84) 39%, rgba(255, 255, 255, 0.397) 57%);
    
    }
    .MainSliderWidhText .ContactWrap {
        display: inline-grid;
        gap: 10px;
    }


}
@media only screen and (max-width: 379px) {
    .HeroSection h1 br{
        display: none;
    }
    .HeroSection.HeroSectionCorporateSetion {
        height: 380px;
    }
    .ContactWrap {
        gap: 10px;
    }
    .ContactWrap a {
        font-size: 11px;
    }
    .HilightWrapSlides {
        max-width: 265px;
    }
    .HRSolutionsServiceWrap .HRSolutionsServiceBox .IconWrap {
        width: 44px;
        height: 44px;
    }
    .HRSolutionsServiceWrap .HRSolutionsServiceBox .IconWrap img{
        width: 24px;
        height: 24px;
    }
    .HRSolutionsServiceWrap .HRSolutionsServiceBox h3 {
        font-size: 12px;
    }
    .TechnologiesLogosWrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .HeroSection video.slick-slide {
        height: 165px;
    }

    
}

.wpcf7-form p
{
    margin-bottom:0px;
}
