/**

* Updated: May 30 2023 with Bootstrap v5.3.0

*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* font-family-poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Poppins:ital,wght@0,100;0,400;0,500;0,600;0,700;1,100&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
/*  font-family: "poppins";*/
}

body {
    font-family: "Poppins", sans-serif !important;
    color: #444444;
    overflow-x: hidden;
}
.clr-blk {
    color: #000;
}
.bg-green {
    background-color: #ffcc00;
    text-align: center;
}
a {
    color: #ffcc00;
    text-decoration: none;
}

a:hover {
    color: #ffcc00;
    text-decoration: none;
}
.ptb {
    padding: 60px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

.heading h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 42px;
    line-height: 50px;
}
.txt-left {
    text-align: initial;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #ffcc00;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #151515;
    line-height: 0;
}

.back-to-top:hover {
    background: #151515;
}

.back-to-top:hover i {
    color: #ffcc00;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #151515;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 0px);
    left: calc(50% - 30px);
    border: 6px solid #ffcc00;
    border-top-color: #151515;
    border-bottom-color: #151515;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 0 0 15px;
    background-color: #fff;
}

/* #header.header-scrolled,
#header.header-inner-pages {
  background: #00403d;
} */

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo a span {
    color: #ffcc00;
}

#header .logo img {
    max-height: 60px;
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
    color: #fff;
    border-radius: 4px;
    padding: 7px 25px 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: 2px solid #ffcc00;
}

.get-started-btn:hover {
    background: #ffbb38;
    color: #343a40;
}

.col-5th{width:20%;}

@media (max-width: 992px) {
    .get-started-btn {
        padding: 7px 20px 8px 20px;
        margin-right: 15px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    text-transform: uppercase;
}

.navbar li {
    position: relative;
}

/* .navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-family: "Open Sans";
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
} */
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 25px;
    font-size: 14px;
    font-family: "Open Sans";
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #ffcc00;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #151515;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    background-color: #ffcc00;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #151515;
    background-color: #ffcc00;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    color: #151515;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    background-color: #ffcc00;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}
/* navbar -experiment upside down */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.carousel {
    position: relative;
    margin-top: 90px;
}
#hero {
    /* width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center; */
    /* background-size: cover; */
    position: relative;
}

#hero:before {
    content: "";
    /* background: rgba(0, 0, 0, 0.6); */
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    position: relative;
    padding-top: 74px;
    text-align: center;
}

#hero h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

#hero h1 span {
    color: #ffcc00;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.9);
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero .icon-box {
    padding: 30px 20px;
    transition: ease-in-out 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    text-align: center;
}

#hero .icon-box i {
    font-size: 32px;
    line-height: 1;
    color: #ffcc00;
}

#hero .icon-box h3 {
    font-weight: 700;
    margin: 10px 0 0 0;
    padding: 0;
    line-height: 1;
    font-size: 20px;
    line-height: 26px;
}

#hero .icon-box h3 a {
    color: #fff;
    transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
    color: #ffcc00;
}

#hero .icon-box:hover {
    border-color: #ffcc00;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: auto;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 20px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section {
    padding: 60px 0;
    overflow: hidden;
}

.section-title {
    padding-bottom: 40px;
    display: none;
}

.section-title h2 {
    font-size: 45px;
    font-weight: 700;
    padding: 0;
    line-height: 54px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #ffcc00;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #151515;
}

.heading-with-brackets {
    font-size: 30px;
}

.heading-with-brackets::before {
    content: "[";
    font-weight: 300;
    font-size: 60px;
    top: -10px;
    position: absolute;
    left: 0;
}
.heading-with-brackets::after {
    content: "]";
    font-weight: 300;
    font-size: 60px;
    top: -10px;
    position: absolute;
    right: 0;
}

.heading-with-brackets::after {
    content: "]";
    font-weight: 300;
    font-size: 60px;
}






/* about */
#about {
    background-color: #ffcc00;
    text-transform: capitalize;
    /* padding: 60px; */
    text-align: center;
    max-width: 100%;
    color: #000 !important;
    font-family: "Poppins", sans-serif;
}
.underline img {
    width: 164px;
    margin-top: -39px;
}
.underline-how img {
    width: 73px;
    height: 4px;
    margin-top: -44px;
}
.underline-result img {
    width: 100px;
    margin-top: -43px;
}
.border {
    border: 1px solid #fff;
    background-color: #fff;
    /*  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;*/
    box-shadow: 2px 5px 0px 0px rgba(0, 0, 0, 0.3);
    padding: 0;
    font-size: 23px;
    font-weight: 700;
    text-align: center;
    color: #000;
    width: 34%;
    margin: 0 auto;
    border-radius: 40px;
}
.f-size {
    font-size: 23px;
    font-weight: 600;
}
.wd-about {
    width: 100%;
    text-align: center;
    margin: 5px auto 10px;
    font-family: "Poppins";
    font-size: 20px;
    font-weight: 700px;
}

.f-size.wd-about.tobuild{font-size: 18px;font-weight: 700 !important;line-height: 25px}
@media (max-width: 667px) {
    .f-size.wd-about.tobuild {
        font-size: 16px;
    }
}
.border.borderone {
    width: 440px;
}
.border.borderone p.wd-about{line-height: normal;font-size: 19px}
.border.bordertwo {
    padding-top: 7px;
    padding-bottom: 7px;
}
.border.bordertwo {
    font-size: 19px;
    line-height: normal;
    width: 240px;
}
h3.border.borderthree {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 800 !important;
}
h3.border.borderthree {
    width: 320px;
    font-size: 18px;
    line-height: normal;
}
.about h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #151515;
    position: relative;
    width: 390px; 
    margin: 0 auto;
}


.mt-3.wd-about.wearehdng {
    font-size: 19px;text-transform: none !important;
    margin-top: 40px !important; 
    display: block;margin-bottom: 20px !important;
}

.whtwedohdng{
font-family: "Poppins";}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/




.about .content h3 {
    font-weight: 700;
    font-size: 28px;
    font-family: "Poppins", sans-serif;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 0 0 8px 26px;
    position: relative;
}

.about .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: #ffcc00;
}

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    /* padding-top: 20px; */
    background-color: #ffcc00;
}
.client p {
    font-size: 17px;
    font-weight: 500;
    font-family: "poppins";
}
.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
}

.clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
}

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffcc00;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
    /* padding-top: 20px; */
    font-family: "poppins", sans-serif;
    /*  background-image: url(../img/bg/bg3.jpg);*/
    /* background-color: #00403d; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding: 20px; */
    color: #fff;
}

.features .icon-box {
    padding-left: 15px;
}

.features .icon-box h4 {padding-top: 10px;display: block;
    font-size: 19px;font-family: Open Sans;line-height: normal;
    font-weight: 700;
}

.features .icon-box i {
    font-size: 48px;
    float: left;
    color: #ffcc00;
}

.features .icon-box p {
    font-size: 15px;font-family: Open Sans;
    color: #000; font-size: 16px;
}

/* program */
.program-section {
    display: flex;
    text-align: center;
}
.tez-img {
    background: #00403d;
    border-radius: 100%;
    text-align: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
        rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    width: 150px;
    height: 150px;
    padding: 30px;box-shadow: 0 0 6px #00403d, 0 0 0 #00403d, 0 0 12px #00403d, 0 0 12px #00403d;
    margin: 0 auto;display: block
}
.tez-img img {
    width: 100%;
}
.tez-img img{margin: 0 auto;display: block}
/*.program-section img:hover {
    transform: scale(1.1);
}*/
.icon-box.aos-init.aos-animate {
    margin: 0 auto;
}
/* program-end */
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background-color: rgba(0, 0, 0, 0.89) !important;
}
.services .icon-box {
    text-align: center;
    border: 1px solid #ebebeb;
    padding: 20px 15px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    /* box-shadow: 0px 9px 0px rgba(255, 204, 0, 0.3); */
    box-shadow: 10px 10px 0px 0px #ffcc00;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    transition: background-color 300ms ease 0ms, background-image 300ms ease 0ms;
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 75px;
    height: 75px;
    /* background: #ffcc00; */
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.services .icon-box .icon i {
    color: #151515;
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 0;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: #151515;
    transition: ease-in-out 0.3s;
    font-size: 15px;
}

.services .icon-box h4 a:hover {
    color: #ffcc00;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.btn.btn-light {
    background: #000;
    color: #fff;
    margin-bottom: 30px;
    border: 1px solid #30323d;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
}
.btn.btn-light:hover {
    background: #fff;
    color: #000;
    border-radius: 10px;
}
.services .icon-box:hover {
    border-color: #00a99d;
    /* box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1); */
    /*  transform: translateY(4px);*/
    background-color: #00a99d;
    box-shadow: 10px 10px 0px 0px #ffcc00;
    transition: background-color 300ms ease 0ms, background-image 300ms ease 0ms;
}
.icon img {
    height: inherit;
}
/* our product */
#product {
    background-image: url(../img/bg/bg3.jpg);
    /* background-color: #00403d; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding:20px; */
    color: #fff;
}
.product-img img {
    max-width: -webkit-fill-available;
    padding: 0;
    width: 100%;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    border-radius: 10px 10px 0 0;
    /* border:double #ffcc00; */
}

.product-img {
    margin: 10px;
    padding: 0px 0px 10px;
    text-align: center;
    border-radius: 10px;
    background-color: #ffcc00;
}

/* our product end */
/* client section */

.client-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #000;
    margin: 4px 10px;
}
#client {
    /* text-align: center; */
    background-color: #ffcc00;
    color: #000 !important;
    font-family: "Poppins", sans-serif;
    /* padding: 20px; */
}
.client-logo {
    width: 100%;
    overflow: hidden;
    /* height: 140px; */
    border-radius: 10px;
}
.client-logo img {
    max-width: -webkit-fill-available;
    padding: 5px;
    border-radius: 10px;
    background-color: #fff;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    object-fit: contain;
    width: 100%;
}
.client-logo img:hover {
    transform: scale(1.2);
}
/* client-btn */
.client-more-btn {
    display: flex;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}
.send_button {
    cursor: pointer;
    color: rgb(255, 255, 255);
    font-size: 16px;
    text-align: center;
    background: #000;
    border: 1px solid #fff;
    padding: 11px 10px 11px;
    border-radius: 4px;
    min-width: 140px;
    font-family: "Poppins";
    text-transform: uppercase;
    /* box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; */
}
.send_button span {
    display: inline-block;
    transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
        transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    transform: translateX(9px);
    font-weight: 600;
    font-family: "Poppins";
}
.send_button:hover span {
    transform: translateX(0);
}
.send_button:after {
    font-family: FontAwesome;
    content: "\00bb";
    font-size: 18px;
    font-style: normal;
    display: inline-block;
    /*     vertical-align: middle; */
    margin-left: 8px;
    transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
    transform: translateX(-10px);
}
.send_button:hover:after {
    opacity: 1;
    transform: translateX(0);
}
/* client section end */

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
        url("../img/cta-bg.jpg") fixed center center;
    background-size: cover;
    padding: 60px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #ffcc00;
    border-color: #ffcc00;
    color: #151515;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.testimonials h2 {
    margin: 0;
    font-size: 45px;
    line-height: 54px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #000000;
}
.testimonial p {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #000;
}
.portfolio {
    background-color: rgba(0, 0, 0, 0.89) !important;
}
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 12px 20px 14px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #000;
    background: #ffcc00;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #151515;
    background: #ffffff;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(21, 21, 21, 0.6);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(21, 21, 21, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #ffcc00;
}

.portfolio .portfolio-wrap:hover::before {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}
.portfolio-btn {
    background-color: #ffcc00;
    border: 1px solid #000 !important;
    text-transform: uppercase;
    font-family: "Poppins";
}

.portfolio-btn:after {
    font-family: FontAwesome;
    content: "\00bb";
    font-size: 18px;
    font-style: normal;
    display: inline-block;
    /* vertical-align: middle; */
    margin-left: 8px;
    transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
    transform: translateX(-10px);
    color: #000;
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #ffcc00;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: #ffcc00;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
    padding: 30px 0;
}

.counts .content h3 {
    font-weight: 700;
    font-size: 34px;
    color: #151515;
}

.counts .content p {
    margin-bottom: 0;
}

.counts .content .count-box {
    padding: 20px 0;
    width: 100%;
}

.counts .content .count-box i {
    display: block;
    font-size: 36px;
    color: #ffcc00;
    float: left;
}

.counts .content .count-box span {
    font-size: 36px;
    line-height: 30px;
    display: block;
    font-weight: 700;
    color: #151515;
    margin-left: 50px;
}

.counts .content .count-box p {
    padding: 15px 0 0 0;
    margin: 0 0 0 50px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #3b3b3b;
}

.counts .content .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #3b3b3b;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
    color: #626262;
}

.counts .image {
    background: url("../img/counts-img.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
}

@media (max-width: 991px) {
    .counts .image {
        text-align: center;
    }

    .counts .image img {
        max-width: 80%;
    }
}

@media (max-width: 667px) {
    .counts .image img {
        max-width: 100%;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
    padding: 80px 0;
    /*background: url("../img/testimonials-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;*/
    background-color: #ffcc00;margin-bottom: 60px;
}

.testimonials .testimonial-item p i {
    display: none !important;
}

/*.testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}*/

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0 5px 0;
    color: #000;
}

.testimonials .testimonial-item h4 {
    font-size: 16px;
    color: #000;font-weight: 500;
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.6);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #000;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffcc00;
    opacity: 1;
}

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    background: #fff;
    /* padding: 60px 0; */
}
.our-team-head h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #151515;
}
.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
}

.team .member .social {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
}

.team .member .social a {
    transition: color 0.3s;
    color: #151515;
    margin: 0 3px;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.8);
    transition: ease-in-out 0.3s;
    color: #484848;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.team .member .social a:hover {
    color: #151515;
    background: #ffcc00;
}

.team .member .social i {
    font-size: 18px;
    line-height: 0;
}

.team .member .member-info {
    padding: 25px 15px; color: #fff;
}

.team .member .member-info h4 {
    font-weight: 500;
    margin-bottom: 5px;
    font-family: Poppins;
    font-size: 15px;
    color: #fff;
}

.team .member .member-info span {
    display: block;
    font-size: 12px; font-family: 'Open Sans', sans-serif;
    font-weight: 400; color: #fff;
    /* color: #aaaaaa; */
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
}

.team .member:hover .social {
    opacity: 1;
    bottom: 15px;
}
/* team start */
.team-img {
    text-align: center;
}
.team-content p {
    text-align: center;
    font-size: 14px;
    font-family: "Poppins";
}
.team-img img {
    width: 250px;
    height: 250px;
}
.team-head-content.mt-3 h3,
h4 {
    font-size: 20px;
}
/* team end */
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    background: #ffcc00;
    color: #151515;
    float: left;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: Poppins;
    color: #151515;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #484848;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #ffcc00;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    text-transform: uppercase;
    background: #000;
    color: #fff;
    float: right;
    padding: 10px 22px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #ffcd6b;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: whitesmoke;
    min-height: 40px;
    margin-top: 74px;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #2f2f2f;
    content: "/";
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }

    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-dark {
    background: #1c1c1c;
}
.ftrcntr img {
    width: 120px;
    margin: 80px auto 20px;
    display: block;
    /* background-color: #fff; */
    /* border-radius: 5px; */
    padding: 10px;
}


.icons img {
    width: 50px !important;
    margin: 10px auto;
    display: block;
    background-color: #1c1c1c;
    border-radius: 10px;
    padding: 10px;
}
.ftrtagline {
    color: #ffcc00;
    font-family: "poppins", sans-serif;
    font-family: 700;
    font-size: 25px;
}
.ftrcntr {
    margin-top: 60px;
}
.ftrcntr ul.social-icons {
    margin: 10px auto !important;
    width: 204px;
    display: block;
    float: none;
}

.copyrightdiv {
    border-top: 1px solid #999;
    margin-top: 20px !important;
    padding-top: 20px;
    padding-bottom: 10px;
}

.ftrcntr .footer-copy-right {
    margin: 0 auto;
    float: none;
    display: block;
    width: 140px;
}

.intrncorsmain .col-lg-3.col-md-6.col-xs-6 {
    float: left;
}

.intrncorsmain {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    float: left;
}

.interncorses {
    border-left: 3px solid #ffcc00;
    padding: 10px 0 10px 15px;
}

.interncorses a:hover {
    color: #ffcc00;
}

.interncorses a {
    display: block;
    color: #fff;font-size:14px;
}
.footer-dark .social-icons li a:hover {
    color: #ffcc00 !important;
}

.footer-dark .social-icons {
    margin: 0px;
}

.footer-dark .social-icons li {
    display: inline-block;
}

.footer-dark .social-icons li a {
    height: 45px;
    width: 45px;
    line-height: 45px;
    padding: 0px;
    color: #fff;
    font-size: 22px;
    text-align: center;
    margin-right: 3px;
}

.footer-dark .social-icons li a:hover {
    color: #f0f6fe;
}

.footer-dark .footer-bottom {
    padding: 0px;
    color: #fff;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.footer-dark .footer-bottom .footer-bottom-info {
    display: flex;
    justify-content: space-between;
    padding: 30px 0px;
    align-items: center;
}
@media only screen and (max-width: 767px){
.social-links {
    display: flex;
    justify-content: center;
    font-size: 25px;
}

.col-5th{width:100%;}
}
.social-links a i {
    font-size: 30px;
    padding: 0px 10px;
}
.social-links a:hover {
    color: white;
}
.telegram img {
    width: 200px;
    margin: 18px 0;
}

/* footer */

.product-link p,
.product-img p {
    color: #000;
}

.product-link p{font-size: 20px;margin-top: 10px}
.product-link a.know-more-btn {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;padding-left: 20px;padding-right: 20px;
}


/*Custom CSS Start*/
.headerbanner img{width: 100%}
.swiper-slide {
    width: 33.33%;
}

#team .col-lg-3.col-md-6.d-flex.align-items-stretch {
    padding: 0;
    display: block !important;
}
#team .col-lg-3.col-md-6.d-flex.align-items-stretch .member.aos-init.aos-animate {
    margin: 0 8px;
}
#team .member-img{background: #00403d}
.team .member .member-img img {
    border-radius: 100%;
    width: 100px;
    height: 100px;
    margin: 20px auto 5px;
    display: block;
    border: 4px solid #ffcc00;
}
#team .bg-green {
    background-color: #00403d;
    text-align: center;
}
.appliform {
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 20px 10px;
}
.appliform h2 {
    font-size: 25px;
    font-weight: 500;
    text-align: center;line-height: 24px;
}
.appliform label {
    font-family: Open Sans, sans-serif;
    font-size: 14px;display: block;
    font-weight: 500; color: #666666;
}
.appliform label span.astrk{color: red; font-weight: 600}
.appliform input, .appliform input:focus{background: #eee;color: #999;border: 1px solid #ccc;padding: 12px 16px}
.appliform .chosefile input{background: none;border: 0;padding-left: 0}
.contact .appliform .php-email-form .form-group{margin-bottom: 10px}
.contact .php-email-form button[type="submit"] {text-transform: uppercase;
    background: #000;
    color: #fff;
    float: right;
    padding: 5px 12px;
    font-size: 14px;
}
.contact .php-email-form button[type="submit"]:hover{background: #ffcc00; color: #000}

.writetous{background-image: url(../img/writetous.jpg);
    /* background-color: #00403d; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding:20px; */
    color: #fff;padding:60px 0 20px !important}

.writetous button.applisubmit {
    color: #FFFFFF !important;
    border-width: 0px !important;
    border-radius: 5px;
    letter-spacing: 1px;
    font-size: 16px;
    font-family: 'Poppins',Helvetica,Arial,Lucida,sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    background-color: #000000 !important;
    padding-top: 16px !important;
    padding-right: 24px !important;
    padding-bottom: 16px !important;
    padding-left: 24px !important;
    margin-top: 15px !important;
}

/*.writetous button.applisubmit:hover {
    letter-spacing: 5px !important;
}*/

.writetous input.form-control, .writetous textarea.form-control {
    border-radius: 10px;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
}
.writetous .heading h2 {
    font-size: 32px;
}
/*Custom CSS End*/


/*RESPONSIVE CSS START*/
@media only screen and (max-width: 1279px) {
    .border.borderone {
        width: 50%;
    }
    .border.bordertwo {
        width: 36%;
    }
    h3.border.borderthree {
        width: 44%;
    }
    .interncorses {
        padding-left: 15px;
    }

.navbar {
    width: 96%;
}
.product-link .text-center.mt-2 {
    padding: 20px 30px 0 !important;
    font-size: 19px !important;
}
}

@media only screen and (max-width: 1023px) {
    .border.borderone,
    .border.bordertwo,
    h3.border.borderthree {
        padding-left: 10px;
        padding-right: 10px;
        width: 80%;
    }

    .client br {
        display: none;
    }
    .client .col-lg-2.col-md-4 {
        margin-bottom: 20px;
    }

    .navbar {
        width: auto;
        float: right;
    }
    .bi.mobile-nav-toggle.bi-x {
    color: #000;
    background: #fff;
}
/*.container, .container-md, .container-sm {
    max-width: 96% !important;
}*/
.product-link .text-center.mt-2 {
    font-size: 20px !important;
}
.features .icon-box {
    width: 100%;margin-bottom: 30px;
}
}

@media only screen and (max-width: 959px) {
/*#about{margin-top: 60px;}*/
.product-link .text-center.mt-2 {
    font-size: 18px !important;
    padding: 20px 50px 0 !important;
}
#product .col-lg-4.col-md-6 {
    margin-bottom: 20px;
}
.swiper-slide {
    width: 100% !important;
}
}


@media only screen and (max-width: 799px) {
#team .col-lg-3.col-md-6.d-flex.align-items-stretch {
    margin-bottom: 15px;
}
}

@media only screen and (max-width: 767px) {
.services .icon-box .icon img {
    width: 100%;
    height: auto;
}
.services .icon-box .icon {
    width: 40px;
    height: auto;
}
#services .mt-4 {
    margin-top: 0 !important;
}
.services .icon-box h4 {
    line-height: 16px;
}
.services .icon-box{margin-bottom: 20px}

    .ptb {
        padding: 60px 20px;
    }

        .about h1 {
            font-size: 32px;
            width: 100%;
            margin-bottom: 0;
        }
.heading-with-brackets::before, .heading-with-brackets::after{font-size:50px}
    .heading-with-brackets {
        font-size: 28px;
    }
    .border.borderone,
    .border.bordertwo,
    h3.border.borderthree {
        width: 100%;
    }
    .heading h2 {
        font-size: 30px;
    }

/* .interncorses {
    border-left: 0;
    padding: 10px 0;
    border-bottom: 1px solid #fc0;
    text-align: center;
} */
.interncorses {
    border-left: 0;
    padding: 10px 0;
    /* border-bottom: 1px solid #fc0; */
    text-align: center;
}
.blog_head_content {
    padding: 40px 0 !important;
}
.blog_head_content h1 {
    font-size: 26px;
}
.text-center {
    text-align: center !important;
    font-size: 12px;
}
.blog-start {
    margin-top: 40px !important;
}
.inner-heading-blog ul li a {
    font-size: 13px;
}
.content h6 {
    font-size: 12px !important;
    line-height: normal;
}
.content{height: inherit !important}

.underline-result p br {
    display: none;}
.underline-result p {
    margin-top: -20px;
    margin-bottom: 20px;
}
#contact img {
    margin: 0 auto;
    float: none;
    display: block;
}
.services .col-lg-3.col-md-6.d-flex.align-items-stretch.aos-init.aos-animate {
    margin-bottom: 20px;
}
.client .col-lg-2.col-md-4 {
    margin-bottom: 23px !important;
}
.our-team-head h2 {
    margin-bottom: 20px;
}
}

@media only screen and (max-width: 479px){
.about h1{font-size: 22px}
.heading h2 {
    font-size: 26px;
    line-height: normal;
}
.product-link .text-center.mt-2 {
    font-size: 20px !important;
    padding: 0;
}
.product-link a.know-more-btn{font-size: 14px}
.form-group {
    margin-bottom: 0;
}
#team{padding: 40px 10px !important}
#team .container {
    margin: 0 !important;
    width: 100% !important;
}
#product .container {
    margin: 0 !important;
    width: 100% !important;
    padding: 0 !important;
}

}

/*RESPONSIVE CSS END*/

/* blog page started */
section#blog_head {
    margin-top: 5rem;
    background-color: #ffcc00;
    font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif !important;
}
#blog_head h1 {
    color: #000;
}
ol.breadcrumb.text-center {
    justify-content: center;
}
ol.breadcrumb.text-center a {
    color: #000;
}

.blog_head_content {
    padding: 80px;
}
/* blog-next */

.blog-start {
    margin: 30px auto;
}

.blog-start img {
    width: 348px;
    height: 218px !important;
}

/* .content {
    background-color:#333;
    height: 400px;
    margin: 10px 0;
    border: 1px solid #ccc;
    font-family: "poppins";
} */
.content {
    /* background-color: #333; */
    height: 400px;
    margin: 10px 0;
    border: 1px solid #ccc;
    font-family: "poppins";
}
/* abhsiehk blog css start */
.blog_div_elipse{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* abhsiehk blog css end */


.load-more {
    background-color: #000;
    color: #fff !important;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 20px;
    margin: 50px 0;
    display: inline-block;
}

.load-more:hover {
    background-color: #ffcc00;
    text-decoration: none;
}
.content img {
    min-width: 100%;
    max-width: 100%;
    height: auto;
}
.content h6 {
    color: #000;
    font-size: 15px;
}
.content p {
    color: #2c3238;
    font-size: 15px;
}
.inner-content {
    padding: 20px;
    text-align: initial;
}
.bg-none {
    background-color: #ffcc00;
}
.breadcrumb {
    background: none !important;
}

section#faq button.accordion-button {
    background: #ffcc00 !important;
    border-bottom: 2px solid #fff;
}
.our-program-inner:first-child {
    margin-top: 50px;
}
.our-program-inner{margin-top: 30px}
/* blog-inner-page start */
#main {
    font-family: "poppins";
}
.inner-bread {
    padding: 15px 0;
    background: whitesmoke;
    min-height: 40px;
    margin-top: 90px !important;
    border-top: 2px solid #6c757d26;
}
.portfolio-details .inner-heading-blog ul li {
    list-style: none !important;
    /* color: black; */
}
.blog-inner-headimg img {
    max-width: 100%;
    height: auto;
}
/* client inner page */
#client-head {
    margin-top: 5rem;
    background-color: #00403d !important;
    font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif !important;
}
/* our gallery css */
/* font family need to change monserate */

h1 {
    /* font-family: 'Abel', sans-serif; */
    font-weight: 100;
    font-size: 40px;
    /* text-align:center; */
}
.container {
    width: 90%;
    margin: 0 auto;
}

a {
    outline: 0 !important;
}
.magnific-img img {
    width: 100%;
    height: 284px;
    object-fit: cover;
    object-position: center;
}
.mfp-bottom-bar,
* {
    font-family: "Poppins", sans-serif;
}
/* .magnific-img {
    display: inline-block;
    width: 32.3%;
} */
a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}
.mfp-arrow-left:before {
    border-right: none !important;
}
.mfp-arrow-right:before {
    border-left: none !important;
}
button.mfp-arrow,
.mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}
.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
    opacity: 1 !important;
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}
.mfp-preloader a {
    color: #ccc;
}
.mfp-preloader a:hover {
    color: #fff;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}
.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
    margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}
.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}
.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}
.mfp-arrow-left:after {
    border-right: 17px solid #fff;
    margin-left: 31px;
}
.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
    right: 0;
}
.mfp-arrow-right:after {
    border-left: 17px solid #fff;
    margin-left: 39px;
}
.mfp-arrow-right:before {
    border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}
.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}
.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
}
.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
    screen and (max-height: 300px) {
    /**
       * Remove all paddings around the image on small screen
       */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}
/* edit by me */
.bg-img {
    background-color: #00403d;
    color: white;
    padding: 10px;
    min-height: 92px;
}
.magnific-img {
    margin: 0;
}
.bg-gallery {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
  margin-top: 43px;
}

/* our program pages 2 */
.our-program-inner p{
    color: #666;
    font-weight: 500;
    text-align: left;
    font-size: 16px;
    line-height: 1.8em;
    font-family: 'Poppins';
}
.our-program-inner li{
    color: #666;
    font-weight: 500;
    text-align: left;
    font-size: 16px;
    line-height: 1.8em;
    font-family: 'Poppins';
}
.font-weight{
    font-weight: 700;
}
.w-color{
    background-color: #fff;
}

.blog-details-search h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}
.blog-details-search .search-bx input {
    padding: 0px 10px;
    width: 100%;
    border: 1px solid #18aa9d57;
    font-size: 16px;
    height: 40px;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.blog-details-search .search-bx input:focus{
    outline: none;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.intrncorsmain {
    /* width: 33.33%; */
    /* float: left; */
}

.event-box .event-txt {
    padding-top: 0 !important;
}
.event-box h6 {
    background: #00403d;
    color: #fff;
    padding: 15px;margin-bottom:30px !important;
    min-height: 80px;
    margin-top: 0;
}

h3.text-center.progheadng {
    text-align: left !important;
    border-left: 4px solid #ffcc00;
    padding-left: 10px;
    margin-bottom: 20px;
}
.our-program-inner h4 {
    font-weight: 600;
    margin-bottom: 8px !important;
}
ul.our-program-inner {
    margin-top: 0 !important;
}
/* abhishek css start for teztech culture page */
.culture_b_radius{
    border: 0px;
    border-radius: 0px;
}
.culture-card-body {
    padding: 12px;
    background-color: #18aa9d;
    color: white;
    min-height: 70px;
}
.culture_card_text {
    font-weight: 500;
    font-size: 14px;
    display: -webkit-box;
    max-width: 400px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.text-elipsis{
    overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.team-img.mt-2 img {
    border-radius: 100%;
    border: 4px solid #f7d828;
    box-shadow: 0 0 6px;
}
/* abhishek css end for teztech culture page */

@media only screen and (max-width: 425px) {
  /* Your CSS rules for screens up to 425px wide */
  .heading-with-brackets::before {
    content: "[";
    font-weight: 300;
    font-size: 51px;
    top: -8px;
    position: absolute;
    left: -1px;
}
}

.topbg {
    background: #00403d;
    padding: 5px 0;
}
.langchng {
    float: right;
}

.contdtltop ul {
    margin: 0;
    padding: 0;
}
.contdtltop ul li {
    list-style: none;
    display: inline;
    margin-right: 5px;
}
.contdtltop ul li a {
    color: #fff;
    text-decoration: none;
}
.contdtltop ul li a span img {
    width: 20px;
    margin-right: 10px;
}

@media only screen and (max-width: 600px) {
.topmobdspnone{display:none}
#header .logo{top: 6px;
  position: relative;}
}

.topbg .col-lg-8.col-md-8.col-sm-6 {
    width: 50%;
    float: left;
}
.topbg .col-lg-4.col-md-4.col-sm-6 {
    width: 50%;
}

.blog-details-text.pt-3 {
    margin-bottom: 60px;
}
/* Hover effect */
.faqtitle:hover {
    background-color: #e6b800;
}
a.linkclass{color: #e6b800}
a.linkclass:hover{color: #ffcc00}