/*** Spinner Start ***/


#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/



/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 24px;
    height: 24px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 20px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-white);
    font-size: 15px;
    outline: none;
    margin-top: 10px;
    
}



.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    text-decoration: underline;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
    font-size: 14px;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.548);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: grey;
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: grey;
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: grey;
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header-cloud {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/cloudComputing.webp) center center no-repeat;
    background-size: cover;
}


.page-header-mobComp {
    background:
     url(../img/mobcomp.png) center center no-repeat;
    background-size: cover;
}

/*.mobcomp{*/
/*    background-color: #0b2a4a; */
/*}*/

/*.mobcomp h1, .mobcomp h5{*/
/*    color: white;*/

/*}*/

.mobcomp .cloudDesc{
    text-align: center;
    padding: 15px;
    
}

.cloudDesc img{
    transition: transform 250ms;

}


.cloudDesc img:hover{
    transform: translateY(-10px);
}

.mobcomp .cloudDesc p{
    text-align: justify;
}

.mobcomp .cloudDesc h5{
    margin-top: 10px;
}

/*.mobcomp .cloudDesc p, .mob-left p, .mobText{*/
/*    color: rgb(199, 197, 197);*/
/*}*/

.page-header-rfp {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/rfp.webp) center center no-repeat;
    background-size: cover;
}

.page-header-dev{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/development.webp) center center no-repeat;
    background-size: cover;

}

.page-header-uiux{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/uiux.webp) center center no-repeat;
    background-size: cover;

}

.page-header-testing{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/testing.jpg) center center no-repeat;
    background-size: cover;

}

.page-header-ai{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/ai.webp) center center no-repeat;
    background-size: cover;

}

.page-header-sup{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/contactImg.jpg) center center no-repeat;
    background-size: cover;

}
.page-header-about{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/lesscode.webp) center center no-repeat;
    background-size: cover;

}

.page-header-devops{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/devops.webp) center center no-repeat;
    background-size: cover;

}

.page-header-scrum{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/scrum.webp) center center no-repeat;
    background-size: cover;


}

.page-header-contact{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/contact-us.jpg) center center no-repeat;
    background-size: cover;


}

.page-header-outsourcing{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/outsourcing2.png) center center no-repeat;
    background-size: cover;

}


.page-header-comm{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/indus\ \(3\).png) center center no-repeat;
    background-size: cover;

}

.page-header-appointment{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/bookanappointmentBanner.png) center center no-repeat;
    background-size: cover;

}



.page-header-fact{
    background: rgb(231,211,244);
    background: linear-gradient(90deg, rgba(231,211,244,1) 0%, rgba(163,176,186,1) 50%, rgba(233,226,216,1) 100%);

}

.page-header-digi{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6)), url(../img/digitalMarketing/digi-bg.png) center center no-repeat;
    background-size: cover;
}

.page-header-career{
    background: linear-gradient(rgba(0, 0, 0, 0.507), rgba(0, 0, 0, 0.521)), url(../img/careeer2.png) center center no-repeat;
    background-size: cover;
}

.page-header-team{
    background: linear-gradient(rgba(0, 0, 0, 0.507), rgba(0, 0, 0, 0.521)), url(../img/teamBanner.jpg) center center no-repeat;
    background-size: cover;
}
.page-header-leaders{
    background: linear-gradient(rgba(0, 0, 0, 0.507), rgba(0, 0, 0, 0.521)), url(../img/ourLeadersBg.png) center center no-repeat;
    background-size: cover;
}


.page-header-404{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/img404.png) center center no-repeat;
    background-size: cover;

}

.page-header-pptc{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/pplcy.png) center center no-repeat;
    background-size: cover;

}

.page-header-erp{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/erp.jpg) center center no-repeat;
    background-size: cover;

}

.page-header-food{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/products/fda/food-header.png) center center no-repeat;
    background-size: cover;
}

.page-header-ecom{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/products/ecom/ecomm.png) center center no-repeat;
    background-size: cover;
}


.page-header-SAP{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/SAP-BANNER.png) center center no-repeat;
    background-size: cover;
}


.page-header-salesforce{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/salesforce.jpg) center center no-repeat;
    background-size: cover;
}

.page-header-taxi{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/products/taxi-booking/taxi.png) center center no-repeat;
    background-size: cover;
}

.page-header-driving{
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/drivingshool.png) center center no-repeat;
    background-size: cover;
}


.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -20px;
    right: 10px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-primary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 10px;
    background: var(--bs-primary);
    height: 20px;
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
    height: 350px;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
   
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #b9babe;
}

.contact-form {
    background: #b9babe;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/

.bigthinker{
    background-image: url('../img/bigthinker2.png');
    background-size: cover;
    height: 540px;
    
}


.swiper-slide {
    height: 100vh;
    background-color: lightgray;
  }

.caro-item img{
object-fit: fill;

}

/*.cloudDesc{*/
/*    border-left: 3px solid #26d48c ;*/
/*    padding-left: 10px;*/
    
/*}*/

.contactform{
    /* border: 1px solid lightgray; */
    padding: 45px;
    background-color: #ebf0efbb;
}

.workSec div{
    background-color: lightgray;
    padding: 25px;
    height: 450px;
}

.workSec div:hover{
    background-color: #26d48c;
    transition: 1s;
}

.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:80px;
	right:30px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.my-float{
	margin-top:11px;
}








/*////////*/

.card-big-shadow {
    max-width: 320px;
    position: relative;
}

.coloured-cards .card {
    margin-top: 30px;
}

.card[data-radius="none"] {
    border-radius: 0px;
}
.card {
    border-radius: 8px;
    box-shadow: 0 2px 2px rgba(204, 197, 185, 0.5);
    background-color: #FFFFFF;
    color: #252422;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}


.card[data-background="image"] .title, .card[data-background="image"] .stats, .card[data-background="image"] .category, .card[data-background="image"] .description, .card[data-background="image"] .content, .card[data-background="image"] .card-footer, .card[data-background="image"] small, .card[data-background="image"] .content a, .card[data-background="color"] .title, .card[data-background="color"] .stats, .card[data-background="color"] .category, .card[data-background="color"] .description, .card[data-background="color"] .content, .card[data-background="color"] .card-footer, .card[data-background="color"] small, .card[data-background="color"] .content a {
    color: #FFFFFF;
}
.card.card-just-text .content {
    padding: 35px 35px;
    
}

.card.card-just-text .content h4{
    text-align: center;

}
.card.card-just-text .content p{
    text-align: justify;

}
.card .content {
    padding: 20px 20px 10px 20px;
}
.card[data-color="blue"] .category {
    color: #7a9e9f;
}

.card .category, .card .label {
    font-size: 14px;
    margin-bottom: 0px;
}
.card-big-shadow:before {
    background-image: url("http://static.tumblr.com/i21wc39/coTmrkw40/shadow.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: -12%;
    content: "";
    display: block;
    left: -12%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}
h4, .h4 {
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.2em;
}
h6, .h6 {
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
}
.card .description {
    font-size: 16px;
    color: #66615b;
}
.content-card{
    margin-top:30px;    
}
a:hover, a:focus {
    text-decoration: none;
}

/*======== COLORS ===========*/
.card[data-color="blue"] {
    background: #a5c7c7;
}
.card[data-color="blue"] .description {
    color: #3e5357;
}

.card[data-color="green"] {
    background: #c5d88c;
}
.card[data-color="green"] .description {
    color: #50662f;
}
.card[data-color="green"] .category {
    color: #92ac56;
}

.card[data-color="yellow"] {
    background: #dbc173;
}
.card[data-color="yellow"] .description {
    color: #b25825;
}
.card[data-color="yellow"] .category {
    color: #d88715;
}

.card[data-color="brown"] {
    background: #d6c1ab;
}
.card[data-color="brown"] .description {
    color: #75442e;
}
.card[data-color="brown"] .category {
    color: #a47e65;
}

.card[data-color="purple"] {
    background: #baa9ba;
}
.card[data-color="purple"] .description {
    color: #3a283d;
}
.card[data-color="purple"] .category {
    color: #5a283d;
}

.card[data-color="orange"] {
    background: #ff8f5e;
}
.card[data-color="orange"] .description {
    color: #772510;
}
.card[data-color="orange"] .category {
    color: #e95e37;
}



.menu-social{
    margin-left: 10px; 
    line-height: 30px;
    /* margin-top: -10px; */
    width: 200px;

}
.social-icons{
    display: flex; gap:10px
}


.ag-courses_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  
    padding: 50px 0;
  }
  .ag-courses_item {
    -ms-flex-preferred-size: calc(25% - 20px);
    flex-basis: calc(25% - 30px);
  
    margin: 0 15px 30px;
  
    overflow: hidden;
  
    border-radius: 28px;
  }
  .ag-courses-item_link {
    display: block;
    padding: 30px 20px;
    background-color: #dadada;
  
    overflow: hidden;
  
    position: relative;
  }
  .ag-courses-item_link:hover,
  .ag-courses-item_link:hover .ag-courses-item_date {
    text-decoration: none;
    color: #FFF;
  }
  .ag-courses-item_link:hover .ag-courses-item_bg {
    -webkit-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
  }


  .ag-courses-item_title {
    min-height: 87px;
    margin: 0 0 25px;
  
    overflow: hidden;
  
    font-weight: bold;
    font-size: 25px;
    color: #000;
  
    z-index: 2;
    position: relative;
  }

  

  .ag-courses-item_date-box {
    font-size: 18px;
    color: #000;
  
    z-index: 2;
    position: relative;
  }
  .ag-courses-item_date {
    font-weight: bold;
    color: #ecba64;
  
    -webkit-transition: color .5s ease;
    -o-transition: color .5s ease;
    transition: color .5s ease
  }
  .ag-courses-item_bg {
    height: 128px;
    width: 128px;
    background-color: #ecba64;
  
    z-index: 1;
    position: absolute;
    top: -75px;
    right: -75px;
  
    border-radius: 50%;
  
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
  }
  .ag-courses_item:nth-child(2n) .ag-courses-item_bg {
    background-color: #74cc87;
  }
  .ag-courses_item:nth-child(3n) .ag-courses-item_bg {
    background-color: #d6937b;
  }
  .ag-courses_item:nth-child(4n) .ag-courses-item_bg {
    background-color: #c291f3;
  }
  .ag-courses_item:nth-child(5n) .ag-courses-item_bg {
    background-color: #d674af;
  }
  .ag-courses_item:nth-child(6n) .ag-courses-item_bg {
    background-color: #9a99e7;
  }
  
  
  
  @media only screen and (max-width: 979px) {
    .ag-courses_item {
      -ms-flex-preferred-size: calc(50% - 30px);
      flex-basis: calc(50% - 30px);
    }
    .ag-courses-item_title {
      font-size: 24px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .ag-format-container {
      width: 96%;
    }
  
  }
  @media only screen and (max-width: 639px) {
    .ag-courses_item {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
    }
    .ag-courses-item_title {
      min-height: 72px;
      line-height: 1;
  
      font-size: 24px;
    }
    .ag-courses-item_link {
      padding: 22px 40px;
    }
    .ag-courses-item_date-box {
      font-size: 16px;
    }
  }


  .justfyText{
    text-align: justify;
  }

  .star-text{
    color: goldenrod;
  }

  #myVideo {
    /* position: relative; */
    /* right: 0;
    bottom: 0; */
    /* min-width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0; */
  }

.jumbotron{
    /* border-radius: 15px; */
    padding: 20px;
    margin: 30px;
    background-color: #d4d4d1;
    color: #000;
}


.joinIcon{
   
    
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    

}

.joinIcon img{
    width: 80px;
    height: 80px;
   
}

.joinbox div{
    
}


.whyJoin div{
    background-color: lightgray;
    padding: 25px;
    height: 350px;
   
}

.whyJoin div:hover{
    background-color: #26d48c;
    transition: 1s;
}

.imgclass{
    display: flex;
    border: 1px solid black;
}

.parallax {
    /* The image used */
    /* background-image: url("../img/offculture2.jpg"); */
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/offculture2.jpg) center center no-repeat;
  
    /* Set a specific height */
    min-height: 300px; 
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }


  .parallText p{
    font-size: 18px;
    color: white;
    line-height: 35px;
  }

  .parallText{
    padding: 60px;
  }

  

  .openings{
    border: 1px solid grey;
    padding: 20px;
  }

  .openings:hover{
    background-color: #e3f0eb;
    transition: 0.3s;
  }


  .telecomm{
    margin-bottom: 20px;
  }

  .telecomm div{
    background-color: lightgray;
    padding: 25px;
    height: 300px;
    transition: 1s;
}

.telecomm div:hover{
    background-color: #e8f7a5;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 2px 2px 2px #707a40;
    color: black;
}


.divBox{
    margin-bottom: 20px;
}
.divBox div{
    padding: 25px;
}

.box{
    width: 100%;
    height: 300px;
    background: #e8f7a5;
    margin: 0px 10px;
    transition: 1s;

}


.box:hover{
    transform: scale(1.05);
    background: #d5e689;
    z-index: 2;
    box-shadow: 2px 2px 2px #707a40;
    color: black;
    
}

.founder{
    text-align: center;
}

.founder img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
}



.health div{
    background-color: lightgray;
    padding: 25px;
    height: 420px;
    transition: 1s;
}

.health div:hover{
    background-color: #bae4db;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 2px 2px 2px #6f928b;
    color: black;
}



.healthBox div{
    background-color: rgb(240, 200, 250);
    padding: 25px;
    height: 440px;
    transition: 1s;
}

.healthBox div:hover{
    background-color: #d9a8e9;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 2px 2px 2px #93739e;
    color: black;
}

.prof div{
    background-color: rgb(243, 213, 229);
    padding: 25px;
    height: 300px;
    transition: 1s;
}

.prof div:hover{
    background-color: #e2b2d6;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 2px 2px 2px #bb7da3;
    color: black;
}


.prof2 div{
    background-color: rgb(235, 241, 199);
    padding: 25px;
    height: 300px;
    transition: 1s;
}

.prof2 div:hover{
    background-color: #dee9ad;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 2px 2px 2px #919665;
    color: black;
}


.manufat div{
    background-color: rgb(212, 221, 245);
    padding: 25px;
    height: 380px;
    transition: 1s;
}

.manufat div:hover{
    background-color: #bed1ee;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 2px 2px 2px #576f80;
    color: black;
}


.travel div{
    background-color: rgb(223, 241, 237);
    padding: 25px;
    height: 350px;
    transition: 1s;
}

.travel div:hover{
    background-color: #cdecee;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 2px 2px 2px #578080;
    color: black;
}

.h2small{
    font-size: 19px;
}








/*============= media query================= */
html{
    overflow-x: hidden !important;
}
    
    
@media (max-width: 576px) {
    .imgsec{
        order: 2;
    }


    .carousel-control-prev {
        width: 40px;
        height: 40px;
    }

    .carousel-control-next{
        width: 40px;
        height: 40px;

    }

    .carousel-item h1{
        font-size: 22px;
    }

    h4, .h4{
        font-size: 1rem;;
    }

    .carousel-caption .carousel-content a button.carousel-content-btn1{
        margin: 10px;
    }

    .textSec{
        margin-top: -30px;
    }

    .carousel-item img{
        height: 650px;
    }


   .st-txt-2, .expBtn{
    padding-left: 30px;
   }


   .workSec div{
    height: 330px;
    margin-bottom: 20px;
   }

   .p-5{
    padding: 1rem !important;
   }

   .menu-social{
    padding-bottom: 20px;
   }


   .bigThinkerImg{
    width: 200px;
   }

   .navbar-brand img{
    width: 135px;
   }

   .telecomm div, .divBox div{
    margin-bottom: 20px;
   }

   .health div, .healthBox div, .prof div, .prof2 div, .manufat div, .travel div, .whyJoin div{
    margin-bottom: 20px;
    height: auto; 
   }

   .openings{
    margin-bottom: 20px;
   }

   .top-text{
    font-size: 2.5em !important;
    line-height:50px !important;
   }

   .bannImg2, .bannImg3, .bannImg4, .arrow{
    display: none;
   }

   


   .techo-icons{
    display: flex;
    margin-bottom: 10px;
   }


   .getstarted-btn{
        margin-top: 0 !important;
   }

   .feature-bottom{ 
    height: 510px !important;
   }
  

   .logo-sec{
    padding-left: 30px;
   }

   .hiddencol{
    display: none;
   }

   .hiddencol1{
    display: block !important;
   }

 

  }


  @media (min-width: 577px) and (max-width: 768px) {
    
    .imgsec{
        order: 2;
    }
   

    .bigThinkerImg{
        width: 250px;
       }

    .workSec div{
        height: 330px;
        margin-bottom: 20px;
       }

       .navbar-brand img{
        width: 180px;
       }

       .telecomm div, .divBox div{
    
        margin-bottom: 20px;
    
       }

    .health div, .healthBox div, .prof div, .prof2 div, .manufat div, .travel div, .whyJoin div{
    margin-bottom: 20px;
    height: auto; 
    }

    .openings{
        margin-bottom: 20px;
       }
      
       .top-text{
        font-size: 2.5em;
        line-height:50px;
       }

    /* Your CSS rules for small devices go here */
  }

  
  @media (min-width: 769px) and (max-width: 992px) {
    /* Your CSS rules for medium devices go here */
 
       .navbar-brand img{
        width: 230px;
       }


       .health div, .healthBox div, .prof div, .prof2 div, .manufat div, .travel div, .whyJoin div{
        margin-bottom: 20px;
        height: auto; 
        }

        .openings{
            margin-bottom: 20px;
        }

        
        
          


    
  }

  @media (min-width: 993px) and (max-width: 1200px) {
    /* Your CSS rules for large devices go here */
  

       .health div, .healthBox div, .prof div, .prof2 div, .manufat div, .travel div, .whyJoin div{
        margin-bottom: 20px;
        height: auto; 
        }

        .openings{
            margin-bottom: 20px;
           }
          


 
  }

  @media (min-width: 1201px) {
    /* Your CSS rules for extra large devices go here */
    .prof div, .prof2 div, .manufat div, .travel div, .whyJoin div{
        margin-bottom: 20px;
        
    }

    .openings{
        margin-bottom: 20px;
       }
      
  }

  .mt-100{
    margin-top: 100px;
  }

  .mt-120{
    margin-top: 120px;
  }

  .mb-100{
    margin-bottom: 100px;
  }
  
  .erp-benifits{
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 1px solid lightgray;
    height: 380px;
  }

  .erp-benifits:hover{
    box-shadow: none;
  }

  .erp-benifits img{
    /* padding: 30px; */
  }

  .gui-sec{
    background-color: #dfeef7;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .plane-sec{
    padding-top: 70px;
    padding-bottom: 70px;

  }


  .web-sec{
    background-color: #f6e5fc;
    padding-top: 50px;
    padding-bottom: 50px;
  }


 
  .borderBottom{
    padding: 40px;
    box-shadow: rgb(204, 219, 232) -3px -3px 6px 0px inset, rgba(255, 255, 255, 0.5) 3px 3px 6px 1px inset;
   
  }



  .lms-benifits{
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 1px solid lightgray;
    height: 410px;
  }

  .lms-benifits:hover{
    box-shadow: none;
  }

  .tms-benifits{
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 1px solid lightgray;
    height: 360px;

  }

  .tms-benifits:hover{
    box-shadow: none;
  }

  .imgSec img{
  border: 1px solid lightgray;

  }


  .ecom-benifits{
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 1px solid lightgray;
    height: 390px;

  }

  .ecom-benifits:hover{
    box-shadow: none;
  }

  .sap-features{
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 1px solid lightgray;
    height: 350px;

  }

  .sap-features:hover{
    box-shadow: none;
  }

  .sap-features h4{
    margin-top: 20px;
    
  }


  .sforce-features{
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 1px solid lightgray;
    height: 370px;

  }

  .sforce-features:hover{
    box-shadow: none;
  }

  .sforce-features h4{
    margin-top: 20px;
    
  }




  .dropdown-submenu{
    position: relative;
}

.subMenu{
    display: none !important;
}
.dropdown-submenu a::after{
    transform: rotate(-90deg);
    position: absolute;
    right: 3px;
    top: 40%;
}
.dropdown-submenu:hover .dropdown-menu, .dropdown-submenu:focus .dropdown-menu{
    display: flex !important;
    flex-direction: column;
    position: absolute !important;
    margin-top: -30px;
    left: 100%;
}
@media (max-width: 992px) {
    .dropdown-menu{
        width: 50%;
    }
    .dropdown-menu .dropdown-submenu{
        width: auto;
    }


    .top-text{
        font-size: 2.5em !important;
        line-height:50px !important;
       }
    
       .bannImg2, .bannImg3, .bannImg4, .arrow{
        display: none;
       }
    
       
    
    
       .techo-icons{
        display: flex;
        margin-bottom: 10px;
       }
    
    
       .getstarted-btn{
            margin-top: 0 !important;
       }
    
       .feature-bottom{
        height: 530px ;
       }
      
    
       .logo-sec{
        padding-left: 30px;
       }
    
       
}



.top-text{
    
    font-size: 3.5em;
    font-weight: 900;
    text-align: center;
    color: black;
    line-height: 80px;
}
.bott-text{
    font-size: 1.5em;
    text-align: center;
}

.innov{
    color: #ce2727;
}

.btns-support{
    margin-top: 30px;
    text-align: center;
}



.arrow-sec{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.arrow-sec img{
   
    transform: translate3d(9.9892px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    will-change: transform;

}



.bnner-sec .bannImg1{
   z-index: 1;
}

.bnner-sec .bannImg2, .bnner-sec .bannImg3, .bnner-sec .bannImg4{
    z-index: 3;
}
.bnner-sec .bannImg2{
    position: relative;
    top: -700px;
    left: -95px;
    box-shadow: 0 40px 60px rgba(0, 0, 0, .2);
}

.bnner-sec .bannImg3{
    position: relative;
    top: -800px;
    right: -560px;
    box-shadow: 0 40px 60px rgba(0, 0, 0, .2);
}

.bnner-sec .bannImg4{
    position: relative;
    top: -780px;
    right: -610px;
    box-shadow: 0 40px 60px rgba(0, 0, 0, .2);
}

.getstarted-btn{
    margin-top: -650px;
    text-align: center;
    margin-bottom: 40px;
}


.features{
    padding: 50px;
    border: 1px solid rgb(194, 192, 192);
    border-radius: 10px;
}


.feature-bottom {
    padding: 40px;
    border: 1px solid rgb(194, 192, 192);
    border-radius: 10px;
    height: 460px;
}


.top-feature{
    margin-top: 150px;
}

.tab-cont-1{
    background-color: #e0ffc8 !important;
    border-radius: 15px;
    margin-top: 15px;
    
}
.tab-cont-2{
    background-color: #c8dbff !important;
    border-radius: 15px;
    margin-top: 15px;
    
}
.tab-cont-3{
    background-color: #c8fff2 !important;
    border-radius: 15px;
    margin-top: 15px;
    
}
.tab-cont-4{
    background-color: #fff6c8 !important;
    border-radius: 15px;
    margin-top: 15px;
    
}
.tab-cont-5{
    background-color: #ffe5e5 !important;
    border-radius: 15px;
    margin-top: 15px;
    
}
.tab-cont-6{
    background-color: #e0c8ff !important;
    border-radius: 15px;
    margin-top: 15px;
    
}
.tab-row{
    padding: 40px 0;
}

.tab1-img{
    margin: 10px 30px;
    padding: 28px 45px;
    background-color: #02c74a;
    border-radius: 15px;
}
.tab2-img{
    margin: 10px 30px;
    padding: 28px 45px;
    background-color: #6f9cf4;
    border-radius: 15px;
}
.tab3-img{
    margin: 10px 30px;
    padding: 28px 45px;
    background-color: #5fcbb1;
    border-radius: 15px;
}
.tab4-img{
    margin: 10px 30px;
    padding: 28px 45px;
    background-color: #eedd82;
    border-radius: 15px;
}
.tab5-img{
    margin: 10px 30px;
    padding: 28px 45px;
    background-color: #ffa1a1;
    border-radius: 15px;
}
.tab6-img{
    margin: 10px 30px;
    padding: 28px 45px;
    background-color: #b07ff0;
    border-radius: 15px;
}


.tab1-img img, .tab2-img img, .tab3-img img, .tab4-img img, .tab5-img img, .tab6-img img{
    border-radius: 15px;
}


.tab-right-sec{
    margin-top: 100px;
   
}


.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link{
    background-color: rgb(0, 0, 0);
    color: white;
}

.black-area-box {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    height: 380px;

}

.black-area-box img, .black-area-box h2{
    margin-bottom: 25px;
}

.bg-90f2e6{
    background-color: #90f2e6;
}

.chatting-sys{
    padding: 100px 30px;
}


.chatting-right-img{
    text-align: center;
    margin: 50px;
}
.chatting-right-img img{
    border-radius: 10px;
}

.feature-box{
    background-color: #ebfdfa;
    text-align: center;
    padding: 30px;
    height: 200px;
}

.contact-div{
    /* border: 1px solid rgba(0, 0, 0, 0.637); */
    height: 250px;
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.contact-div:hover{
    background-color: #e9e9e9;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}



#myImg {
    border-radius: 0px;
    border: 7px solid rgb(65, 65, 65);
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 8px;
    
  }
  
  #myImg:hover {
    opacity: 0.7;
  }
  
  .modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 6;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
  }
  
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  .modal-content,
  #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @keyframes zoom {
    from {
      transform: scale(0)
    }
    to {
      transform: scale(1)
    }
  }
  
.modal-backdrop{
    display: none !important;
  }
  .close {
   
    position: absolute;
    top: 5px;
    right: 10px;
    /* color: #f1f1f1; */
    font-size: 30px;
    font-weight: bold;
    transition: 0.3s;
    border:none;
    font-weight: 600;
    background-color: white;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  @media only screen and (max-width: 700px) {
    .modal-content {
      width: 100%;
    }
  }
    
  /* CUSTOM1 */
  * {
    box-sizing: border-box;
  }
  
  .row-pg {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
    margin-left: auto;
    padding-left: 32px;
    padding-right: 32px;
  }
  
  /* Create four equal columns that sits next to each other */
  .column-pg {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
    flex-direction: column;
    column-gap: 25px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  /* Custom */
  @media screen and (max-width: 600px) {
    .enap-gallery-img {
      padding: 5px;
      
      }
  }
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .column-pg {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
      column-gap: 5px;
      flex-direction: column;
    }
    .row-pg {
      padding-left: 0px;
      padding-right: 0px;
    }
  }
  
  @media screen and (max-width: 600px) {
    .column-pg {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
      column-gap: 10px;
      flex-direction: column;
    }
    .row-pg {
      padding-left: 15px;
      padding-right: 15px;
    }
    
  }

  .dssec2{
    position: relative;
     text-align: center;
    color: white;
  }

  .dssec3{
    position: relative;
    color: white;
  }

 
  

  .dssec2 img{
    margin-bottom: 90px;

  }
  .top-left {
    width: 50%;
    position: absolute;
    top: 30px;
    left: 0px;
    background-color: rgba(99, 96, 96, 0.507);
    padding: 60px;
  
    border-radius: 0 40px 0px 0;

  }

  .top-left2{
    width: 60%;
    position: absolute;
    top: 30px;
    left: 0px;
    background-color: rgba(99, 96, 96, 0.507);
   
    padding: 60px;
    border-radius: 0 40px 0px 0;
  }

  


  .top-right h1{
    font-size: 3rem;
  }

  
  .top-left p{
    font-size: 18px;
  }

  .aboutus{
    font-size: 5rem;
    color: white;
    font-style: italic;
  }

  .sdsec4{
    margin-top: -230px;
  }
  
.sdsec4 h1{
    color: white;
    text-align: center;

}

.sdsec4 ul li , .sdsec4 p{
    font-size: 18px;
    color: white;
}

.sdsec4 .listitem{
    display: flex;
    justify-content: space-around;
}

.sdsec5{
    position: relative;
    color: white;
  }

  .top-right {
    width: 50%;
    position: absolute;
    top: 30px;
    right: 0px;
    background-color: rgba(48, 45, 45, 0.308);
    padding: 60px;
    /* margin-left: -14px !important; */
    border-radius: 40px 0px 0px 40px;

  }
  .top-right h1{
    font-size: 5rem;
    font-style: italic;
  }
.sec-data-security{
    width: 70%;
    float: right;
    position: absolute;
    top: 425px;
    right: 0px;
    background-color: rgba(68, 65, 65, 0.514);
    padding: 60px;
    border-radius: 40px 0px 0px 40px;
}

.sec-data-security ul li{
    font-size: 18px;
    
}


.sdsec6{
    position: relative;
    color: white;
}

.sdsec6 img{
    margin-bottom: 200px;
}
.app-support{
    width: 40%;
    position: absolute;
    top: 100px;
    left: 80px;
    background-color: rgba(68, 65, 65, 0.514);
    padding: 60px;
    /* margin-left: -14px !important; */
    border-radius: 40px;
}

.app-support ul li, .app-pricing ul li{
    font-size: 18px;
}

.app-pricing{
    width: 40%;
    position: absolute;
    top: 500px;
    right: 80px;
    background-color: rgba(68, 65, 65, 0.514);
    padding: 60px;
    /* margin-left: -14px !important; */
    border-radius: 40px;
}


@media (max-width: 377px){
    
    .dssec2 img{
     margin-bottom: 570px !important;
    }
    .dssec2 .aboutus{
     font-size: 2rem;   
     }
 
     .dssec3 .aboutus{
         font-size: 2.5rem;
     }
 
 
     .top-left {
     width: 95% !important;
     padding: 30px !important;
     background-color: rgba(99, 96, 96, 0.678); 
     }
     .top-left p{
         font-size: 14px !important;
     }
     .top-left h3{
         font-size: 16px !important;
     }
 
     .top-left2 {
         width: 95% !important;
         padding: 30px !important;
 
     }
 
     .dssec3 img{
         margin-bottom: 632px !important;
        }
 
 
     .sdsec4 {
         margin-top: -50px !important;
 
     }

     .top-right{
        width: 100%;
     }
     .top-right h1{
        font-size: 2.5rem;
     }

     .sdsec5 img{
        margin-bottom: 670px;
     }

     .sec-data-security{
        width: 90%;
        top: 290px;
        padding: 20px;
     }
     .sec-data-security ul li, .app-pricing ul li, .app-support ul li {
        font-size: 16px;
     }

     .sdsec6 img {
    
        margin-bottom: 1000px;
     }

     .app-support{
        width: 90%;
        top:120px;
        padding: 20px;
        left: 15px;
     }

     .app-pricing{
        width: 90%;
        top:420px;
        padding: 20px;
        left: 15px;
     }
     .listitem ul li{
        font-size: 16px;
     }
 }
 
 
 @media (min-width: 378px) and (max-width: 475px) {
 
    .dssec2 img{
        margin-bottom: 430px !important;
       }
       .dssec2 .aboutus{
        font-size: 2rem;   
        }
    
        .dssec3 .aboutus{
            font-size: 2.5rem;
        }
    
    
        .top-left {
        width: 95% !important;
        padding: 30px !important;
        background-color: rgba(99, 96, 96, 0.678); 
        }
        .top-left p{
            font-size: 14px !important;
        }
        .top-left h3{
            font-size: 16px !important;
        }
    
        .top-left2 {
            width: 95% !important;
            padding: 30px !important;
    
        }
    
        .dssec3 img{
            margin-bottom: 548px !important;
           }
    
    
        .sdsec4 {
            margin-top: -50px !important;
    
        }
   
        .top-right{
           width: 100%;
        }
        .top-right h1{
           font-size: 2.5rem;
        }
   
        .sdsec5 img{
           margin-bottom: 530px;
        }
   
        .sec-data-security{
           width: 90%;
           top: 290px;
           padding: 20px;
        }
        .sec-data-security ul li, .app-pricing ul li, .app-support ul li {
           font-size: 16px;
        }
   
        .sdsec6 img {
       
           margin-bottom: 600px;
        }
   
        .app-support{
           width: 93%;
           top:155px;
           padding: 20px;
           left: 15px;
        }
   
        .app-pricing{
           width: 93%;
           top:455px;
           padding: 20px;
           left: 15px;
        }
        .listitem ul li{
           font-size: 16px;
        }
 }
 @media (min-width: 476px) and (max-width: 575px) {
     
    .dssec2 img{
        margin-bottom: 230px !important;
       }
       .dssec2 .aboutus{
        font-size: 2rem;   
        }
    
        .dssec3 .aboutus{
            font-size: 2.5rem;
        }
    
    
        .top-left {
        width: 95% !important;
        padding: 30px !important;
        background-color: rgba(99, 96, 96, 0.678); 
        }
        .top-left p{
            font-size: 14px !important;
        }
        .top-left h3{
            font-size: 16px !important;
        }
    
        .top-left2 {
            width: 95% !important;
            padding: 30px !important;
    
        }
    
        .dssec3 img{
            margin-bottom: 300px !important;
           }
    
    
        .sdsec4 {
            margin-top: -50px !important;
    
        }
   
        .top-right{
           width: 100%;
        }
        .top-right h1{
           font-size: 2.5rem;
        }
   
        .sdsec5 img{
           margin-bottom: 375px;
        }
   
        .sec-data-security{
           width: 90%;
           top: 290px;
           padding: 20px;
        }
        .sec-data-security ul li, .app-pricing ul li, .app-support ul li {
           font-size: 16px;
        }
   
        .sdsec6 img {
       
           margin-bottom: 500px;
        }
   
        .app-support{
           width: 93%;
           top:155px;
           padding: 20px;
           left: 15px;
        }
   
        .app-pricing{
           width: 93%;
           top:455px;
           padding: 20px;
           left: 15px;
        }
        .listitem ul li{
           font-size: 16px;
        }
 }
 @media (min-width: 576px) and (max-width: 675px) {
    .dssec2 img{
        margin-bottom: 155px !important;
       }
       .dssec2 .aboutus{
        font-size: 2rem;   
        }
    
        .dssec3 .aboutus{
            font-size: 2.5rem;
        }
    
    
        .top-left {
        width: 95% !important;
        padding: 30px !important;
        background-color: rgba(99, 96, 96, 0.678); 
        }
        .top-left p{
            font-size: 14px !important;
        }
        .top-left h3{
            font-size: 16px !important;
        }
    
        .top-left2 {
            width: 95% !important;
            padding: 30px !important;
    
        }
    
        .dssec3 img{
            margin-bottom: 215px !important;
           }
    
    
        .sdsec4 {
            margin-top: -50px !important;
    
        }
   
        .top-right{
           width: 100%;
        }
        .top-right h1{
           font-size: 2.5rem;
        }
   
        .sdsec5 img{
           margin-bottom: 280px;
        }
   
        .sec-data-security{
           width: 90%;
           top: 290px;
           padding: 20px;
        }
        .sec-data-security ul li, .app-pricing ul li, .app-support ul li {
           font-size: 16px;
        }
   
        .sdsec6 img {
       
           margin-bottom: 400px;
        }
   
        .app-support{
           width: 93%;
           top:155px;
           padding: 20px;
           left: 15px;
        }
   
        .app-pricing{
           width: 93%;
           top:455px;
           padding: 20px;
           left: 15px;
        }
        .listitem ul li{
           font-size: 16px;
        }
 }
 @media (min-width: 676px) and (max-width: 775px) {
    .dssec2 img{
        margin-bottom: 70px !important;
       }
       .dssec2 .aboutus{
        font-size: 2rem;   
        }
    
        .dssec3 .aboutus{
            font-size: 2.5rem;
        }
    
    
        .top-left {
        width: 95% !important;
        padding: 30px !important;
        background-color: rgba(99, 96, 96, 0.678); 
        }
        .top-left p{
            font-size: 14px !important;
        }
        .top-left h3{
            font-size: 16px !important;
        }
    
        .top-left2 {
            width: 95% !important;
            padding: 30px !important;
    
        }
    
        .dssec3 img{
            margin-bottom: 150px !important;
           }
    
    
        .sdsec4 {
            margin-top: -50px !important;
    
        }
   
        .top-right{
           width: 100%;
        }
        .top-right h1{
           font-size: 2.5rem;
        }
   
        .sdsec5 img{
           margin-bottom: 225px;
        }
   
        .sec-data-security{
           width: 90%;
           top: 290px;
           padding: 20px;
        }
        .sec-data-security ul li, .app-pricing ul li, .app-support ul li {
           font-size: 16px;
        }
   
        .sdsec6 img {
       
           margin-bottom: 400px;
        }
   
        .app-support{
           width: 93%;
           top:260px;
           padding: 20px;
           left: 15px;
        }
   
        .app-pricing{
           width: 93%;
           top:855px;
           padding: 20px;
           left: 15px;
        }
        .listitem ul li{
           font-size: 16px;
        }
 }
 @media (min-width: 776px) and (max-width: 875px) {
    .dssec2 img{
        margin-bottom: 60px !important;
       }
       .dssec2 .aboutus{
        font-size: 2rem;   
        }
    
        .dssec3 .aboutus{
            font-size: 2.5rem;
        }
    
    
        .top-left {
        width: 95% !important;
        padding: 30px !important;
        background-color: rgba(99, 96, 96, 0.678); 
        }
        .top-left p{
            font-size: 14px !important;
        }
        .top-left h3{
            font-size: 16px !important;
        }
    
        .top-left2 {
            width: 95% !important;
            padding: 30px !important;
    
        }
    
        .dssec3 img{
            margin-bottom: 55px !important;
           }
    
    
        .sdsec4 {
            margin-top: -50px !important;
    
        }
   
        .top-right{
           width: 100%;
        }
        .top-right h1{
           font-size: 2.5rem;
        }
   
        .sdsec5 img{
           margin-bottom: 115px;
        }
   
        .sec-data-security{
           width: 90%;
           top: 290px;
           padding: 20px;
        }
        .sec-data-security ul li, .app-pricing ul li, .app-support ul li {
           font-size: 16px;
        }
   
        .sdsec6 img {
       
           margin-bottom: 330px;
        }
   
        .app-support{
           width: 93%;
           top:155px;
           padding: 20px;
           left: 15px;
        }
   
        .app-pricing{
           width: 93%;
           top:455px;
           padding: 20px;
           left: 15px;
        }
        .listitem ul li{
           font-size: 16px;
        }
 }
 @media (min-width: 876px) and (max-width: 975px) {
    .dssec2 img{
        margin-bottom: 155px !important;
       }
       .dssec2 .aboutus{
        font-size: 2rem;   
        }
    
        .dssec3 .aboutus{
            font-size: 2.5rem;
        }
    
    
        .top-left {
        width: 95% !important;
        padding: 30px !important;
        background-color: rgba(99, 96, 96, 0.678); 
        }
        .top-left p{
            font-size: 14px !important;
        }
        .top-left h3{
            font-size: 16px !important;
        }
    
        .top-left2 {
            width: 95% !important;
            padding: 30px !important;
    
        }
    
        .dssec3 img{
            margin-bottom: 215px !important;
           }
    
    
        .sdsec4 {
            margin-top: -50px !important;
    
        }
   
        .top-right{
           width: 100%;
        }
        .top-right h1{
           font-size: 2.5rem;
        }
   
        .sdsec5 img{
           margin-bottom: 280px;
        }
   
        .sec-data-security{
           width: 90%;
           top: 290px;
           padding: 20px;
        }
        .sec-data-security ul li, .app-pricing ul li, .app-support ul li {
           font-size: 16px;
        }
   
        .sdsec6 img {
       
           margin-bottom: 400px;
        }
   
        .app-support{
           width: 93%;
           top:155px;
           padding: 20px;
           left: 15px;
        }
   
        .app-pricing{
           width: 93%;
           top:455px;
           padding: 20px;
           left: 15px;
        }
        .listitem ul li{
           font-size: 16px;
        }
 }

 @media (min-width: 976px) and (max-width: 1075px) {
    .dssec2 img{
        margin-bottom: 155px !important;
       }
       .dssec2 .aboutus{
        font-size: 2rem;   
        }
    
        .dssec3 .aboutus{
            font-size: 2.5rem;
        }
    
    
        .top-left {
        width: 95% !important;
        padding: 30px !important;
        background-color: rgba(99, 96, 96, 0.678); 
        }
        .top-left p{
            font-size: 14px !important;
        }
        .top-left h3{
            font-size: 16px !important;
        }
    
        .top-left2 {
            width: 95% !important;
            padding: 30px !important;
    
        }
    
        .dssec3 img{
            margin-bottom: 215px !important;
           }
    
    
        .sdsec4 {
            margin-top: -50px !important;
    
        }
   
        .top-right{
           width: 100%;
        }
        .top-right h1{
           font-size: 2.5rem;
        }
   
        .sdsec5 img{
           margin-bottom: 280px;
        }
   
        .sec-data-security{
           width: 90%;
           top: 290px;
           padding: 20px;
        }
        .sec-data-security ul li, .app-pricing ul li, .app-support ul li {
           font-size: 16px;
        }
   
        .sdsec6 img {
       
           margin-bottom: 400px;
        }
   
        .app-support{
           width: 93%;
           top:155px;
           padding: 20px;
           left: 15px;
        }
   
        .app-pricing{
           width: 93%;
           top:455px;
           padding: 20px;
           left: 15px;
        }
        .listitem ul li{
           font-size: 16px;
        }
 }
 @media (min-width: 1076px) and (max-width: 1175px) {
    .dssec2 img{
        margin-bottom: 155px !important;
       }
       .dssec2 .aboutus{
        font-size: 2rem;   
        }
    
        .dssec3 .aboutus{
            font-size: 2.5rem;
        }
    
    
        .top-left {
        width: 95% !important;
        padding: 30px !important;
        background-color: rgba(99, 96, 96, 0.678); 
        }
        .top-left p{
            font-size: 14px !important;
        }
        .top-left h3{
            font-size: 16px !important;
        }
    
        .top-left2 {
            width: 95% !important;
            padding: 30px !important;
    
        }
    
        .dssec3 img{
            margin-bottom: 215px !important;
           }
    
    
        .sdsec4 {
            margin-top: -50px !important;
    
        }
   
        .top-right{
           width: 100%;
        }
        .top-right h1{
           font-size: 2.5rem;
        }
   
        .sdsec5 img{
           margin-bottom: 280px;
        }
   
        .sec-data-security{
           width: 90%;
           top: 290px;
           padding: 20px;
        }
        .sec-data-security ul li, .app-pricing ul li, .app-support ul li {
           font-size: 16px;
        }
   
        .sdsec6 img {
       
           margin-bottom: 400px;
        }
   
        .app-support{
           width: 93%;
           top:155px;
           padding: 20px;
           left: 15px;
        }
   
        .app-pricing{
           width: 93%;
           top:455px;
           padding: 20px;
           left: 15px;
        }
        .listitem ul li{
           font-size: 16px;
        }
 }


 