:root {

    --primary-color: #b11f28;
    --secondary-color: #0267b4;
    --third-color: #042a87;
    --fourth-color: #0175bd;
}

.text-center {
    text-align: center;
}

::-webkit-scrollbar {
    background-color: var(--primary-color);
    width: 10px;

}

::-webkit-scrollbar-track {
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-top-left-radius: 10px;
    height: 10px;
    border-bottom-right-radius: 10px;
}

.header-area {
    margin-bottom: -106px;
}

.header-menu {
    text-align: right;
}

.header-menu ul {
    display: inline-block;
}

.header-menu ul li {
    display: inline-block;
    margin-right: 35px;
}

.header-menu ul li a {
    display: inline-block;
    font-weight: 600;
    font-size: 17px;
    padding: 40px 0;
    text-transform: none;
    color: #fff;
    transition: 0.5s;
}

.header-menu ul li a:hover {
    color: var(--secondary-color);
}

.header-button {
    display: inline-block;
}

.header-button a {
    padding: 14px 34px;
    color: #fff;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: .5s;
    text-transform: capitalize;
    font-weight: 600;
}

.header-button a:hover {
    color: var(--secondary-color);
    background: #fff;
}

.header-menu ul li i {
    font-size: 12px;
    color: #fff;
    position: relative;
    left: 6px;
    top: -1px;
    transition: 0.5s;
}


.header-menu ul li a:hover i {
    color: var(--secondary-color);
}

.header-search-icon i {
    display: inline-block;
    color: #ffff;
    transition: 0.5s;
}

.header-search-icon i:hover {
    color: var(--secondary-color);
}

/*sub-menu*/
.header-menu ul li.menu-item-has-children {
    position: relative;
}



.header-menu ul li .sub-menu {
    position: absolute;
    width: 450px;
    display: block;
    text-align: left;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    top: 150%;
    z-index: 99;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--fourth-color);
    border-radius: 3px 3px 0 0;
}

.header-menu ul li .service-submenu {
    position: absolute;
    width: 350px !important;
    display: block;
    text-align: left;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    top: 150%;
    z-index: 99;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--fourth-color);
    border-radius: 3px 3px 0 0;
}

.header-menu ul li:hover .sub-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.header-menu ul li .sub-menu li a {
    display: block;
    padding: 8px 19px !important;
    color: #1e1e1e;
    width: 450px;
    text-transform: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.header-menu ul li .service-submenu li a {
    display: block;
    padding: 8px 19px !important;
    color: #1e1e1e;
    width: 350px !important;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.header-menu ul li .sub-menu li a:hover {
    color: #fff !important;
}

.header-menu ul li .sub-menu li a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    background: var(--fourth-color);
    z-index: -1;
    transition: 0.5s;
}

.header-menu ul li .sub-menu li a:hover:before {
    height: 100%;
    top: 0;
}


.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    /* background: #041424 !important; */
    transition: 0.5s;
    z-index: 9999 !important;
    -webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    animation-name: slideInDown;
}

/*---=====================================================
   <!--Toptech Hero Area Css Style One-->
=========================================================---*/
.style-one.hero-area {
    background: url(../images/home-1/hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 945px;
}

.style-one .hero-content h4 {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 21px;
}

.style-one .hero-content h1 {
    font-size: 74px;
    color: #fff;
    font-weight: 700;
    line-height: 66px;
    text-transform: uppercase;
}

.style-one .hero-content p {
    width: 48%;
    color: #fff;
    font-size: 17px;
    line-height: 25px;
    margin: 26px 0 0;
}

.style-one.hero-button {
    margin-top: 49px;
}

.style-one .hero-button.style-one a {
    display: inline-block;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #fff;
    padding: 13px 45px;
    font-weight: 500;
    font-size: 17px;
    margin-right: 14px;
    transition: 0.5s;
}

.style-one .hero-button.style-one a:hover {
    background: transparent;
    border: 1px solid #ffffff6e;
}

.style-one a.button-two {
    background: transparent !important;
    border: 1px solid #ffffff6e !important;
    padding: 12px 45px !important;
    transition: 0.5s;
}

.style-one a.button-two:hover {
    background: var(--secondary-color) !important;
    color: #fff;
    border: 1px solid var(--secondary-color) !important;
}


/*---=====================================================
   <!--Toptech Feature Area Css Style One-->
=========================================================---*/
.style-one.feature-area {
    padding: 100px 0px;
    position: relative;
    /* z-index: 99; */
}



.style-one .flip-box {
    background-color: transparent;
    /* width: 300px; */
    /* height:250px; */
    perspective: 1000px;
    margin-bottom: 30px;
}

.style-one .flip-box-inner {
    position: relative;
    width: 100%;
    height: 200%;
    text-align: left;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.style-one .flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.style-one .flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.style-one .flip-box-front {
    padding: 36px 25px 0;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.20);
}

.style-one .flip-box-content h4 {
    font-size: 21px;
    font-weight: 500;
    margin: 15px 0 8px;
}

.style-one .flip-box-content p {
    margin: 0 0 28px;
}

.style-one .flip-box-button a {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    font-family: "Poppins", serif;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 40px;
}

.style-one .flip-box-button i {
    display: inline-block;
    font-size: 16px;
    position: relative;
    color: #000;
    padding-left: 6px;
    font-weight: 600;
}

.style-one .flip-box-back {
    background-color: var(--secondary-color);
    transform: rotateY(180deg);
    padding: 34px 24px 0;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.flip-box .flip-box-back::before {
    position: absolute;
    content: "";
    top: -112px;
    right: -112px;
    background: #fff;
    width: 224px;
    height: 224px;
    border-radius: 50%;
    transition: 0.4s;
    opacity: 0.1;
    z-index: -1;
}

.style-one .flip-box-back .flip-box-thumb img {
    filter: brightness(0) invert(1);
}

.style-one .flip-box-back .flip-box-button a,
.style-one .flip-box-back .flip-box-button i,
.style-one .flip-box-back .flip-box-content p,
.style-one .flip-box-back .flip-box-content h4 {
    color: #fff !important;
}


/*---=====================================================
   <!--Toptech About Area Css Style One-->
=========================================================---*/

.style-one.about-area {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.style-one .about-thumb {
    position: relative;
    left: -47px;
}

.style-one .about-icon-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 42px;
}

.style-one .about-icon-thumb {
    color: var(--secondary-color);
    height: 78px;
    width: 127px;
    line-height: 74px;
    text-align: center;
    background-color: #d4e1f757;
    border-radius: 4px;
}

.style-one .about-icon-box-content h4 {
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 7px 0;
}

.style-one .about-icon-box-content p {
    margin: 0;
}

.style-one .about-flex-box {
    display: flex;
    gap: 22px;
    align-items: center;
}

.style-one .about-author {
    display: flex;
    align-items: center;
    gap: 22px;
}

.style-one .about-author-thumb img {
    border-radius: 50px;
}

.style-one .about-author-content h4 {
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 0px 0;
}

.style-one .about-author-content p {
    margin: 0;
    font-size: 15px;
}

.style-one .about-shape {
    position: absolute;
    bottom: -237px;
    right: 19px;
    z-index: -1;
}


/*section-title-Style One*/

.style-one.section-title.left {
    margin-bottom: 42px;
}

.style-one.section-title.center {
    margin-bottom: 48px;
}

.style-one.section-title h4 {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--fouth-color);
    padding: 0 0 0 21px;
    position: relative;
    display: inline-block;
}

.style-one.section-title h4:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--fourth-color);
    content: "";
    top: 5px;
    border-radius: 100%;
}

.team-area .section-title h4::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    content: ".";
    top: 5px;
    border-radius: 100%;
}

.style-one.section-title h1 {
    font-size: 45px;
    margin: 8px 0 0;
    line-height: 1;
}

/* .style-one.section-title span{
    color:var(--secondary-color);
} */

.style-one.section-title p {
    margin: 20px 0 0;
}

/*toptech-button*/
.style-one.toptech-button a {
    padding: 12px 27px 12px 27px;
    font-family: "Poppins", serif;
    font-weight: 600;
    color: #fff;
    background: var(--fourth-color);
    display: inline-block;
    border-radius: 4px;
    border: 1px solid var(--fourth-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 17px;
    margin-top: 8px;
    transition: 0.5s;
}

.style-one.toptech-button a:hover {
    color: var(--third-color);
}

.style-one.toptech-button a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    right: 0;
    top: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
}

.style-one.toptech-button a:hover:before {
    width: 100%;
    left: 0;
}

.style-one.toptech-button i {
    display: inline-block;
    color: #fff;
    font-size: 21px;
    margin-left: 12px;
    position: relative;
    top: 2px;
    transition: 0.5s;
}

.style-one.toptech-button a:hover i {
    color: var(--third-color);
}



/*---=====================================================
   <!--Toptech Service Area Css Style One-->
=========================================================---*/
.style-one.service-area {
    background: url(../images/service-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 111px 0 102px;
    position: relative;
    z-index: 1;
}

.style-one.service-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #0E1E2A;
    opacity: 0.8;
    z-index: -1;
}

.service-area .style-one.section-title h1 {
    color: #fff;
}

.style-one.service-area .flip-box-inner {
    position: relative;
    width: auto;
    height: 257px;
    text-align: left;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.style-one.service-area .flip-box-front {
    padding: 20px 22px 0px;
    border-radius: 5px;
    background-color: transparent;
    display: flex;
    border: 1px solid #284961;
    gap: 25px;
}

.style-one.service-area .flip-box {
    background-color: transparent;
    perspective: 1000px;
    width: auto;
    height: auto;
    margin-bottom: 20px;
}

.style-one.service-area .flip-box-thumb {
    margin-top: 26px;
}

.style-one.service-area .flip-box-content h4 {
    color: #fff;
    font-size: 20px;
}

.style-one.service-area .flip-box-content p {
    color: #BCBCBC;
}

.style-one.service-area .flip-box-back {
    background-color: var(--secondary-color);
    transform: rotateY(180deg);
    padding: 19px 24px 0;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    gap: 25px;
}

.style-one.service-area .flip-box-button a {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    font-family: "Poppins", serif;
    background: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 3px;
}

.style-one.service-area .flip-box-button i {
    display: inline-block;
    font-size: 16px;
    position: relative;
    color: #fff !important;
    padding-left: 6px;
    font-weight: 600;
}



/*---=====================================================
   <!--Toptech Work Process Area Css Style One-->
=========================================================---*/
.style-one.work-process-area {
    padding: 80px 0 60px;
}

.style-one.work-process-area .section-title.center {
    margin-bottom: 58px;
}

.style-one .single-process-box {
    text-align: center;
    padding: 0 9px 0;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.style-one .single-process-box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: -64px;
    top: 47px;
    background: url(../images/process-shape.png);
    background-repeat: no-repeat;
    z-index: -1;
}

.single-process-box.before-transprant:before {
    background: transparent !important;
}

.style-one .single-process-box:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: -64px;
    top: 47px;
    background: url(../images/process-shape2.png);
    background-repeat: no-repeat;
    z-index: -1;
}

.single-process-box.after-transprant:after {
    background: transparent;
}

.style-one .process-box-thumb {
    width: 145px;
    height: 145px;
    line-height: 138px;
    border-radius: 150px;
    display: inline-block;
    color: var(--secondary-color);
    font-size: 65px;
    border: 2px solid #ededed;
    transition: all 500ms ease;
    text-align: center;
    position: relative;
}

.style-one .single-process-box:hover .process-box-thumb {
    border: 2px dashed var(--third-color);
}

.style-one .process-box-thumb img {
    transition: 0.5s;
}

.style-one .single-process-box:hover img {
    transform: scaleX(-1);
}

.style-one .process-content h4 {
    color: var(--third-color);
    font-weight: 500;
    font-size: 23px;
    margin: 30px 0 10px;
}

.style-one .process-number span {
    position: absolute;
    right: 0%;
    top: 0px;
    z-index: 1;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50px;
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background-color: var(--primary-color)
}


/*---=====================================================
   <!--Toptech Faqs Area Css Style One-->
=========================================================---*/
.style-one.faqs-area {
    padding: 0 0 100px;
}

.style-one .row.add-faqs-bg {
    background: #E6EEFB;
    padding: 40px 26px 39px;
    border-radius: 10px;
}

.style-one .single-contact-box {
    background: #083C92;
    padding: 50px;
    padding-top: 64px;
    padding-bottom: 70px;
    border-radius: 10px;
}

.style-one .contact-content h4 {
    color: #fff;
    font-size: 38px;
    margin: 0 0 27px;
}

.style-one .single-input-box input {
    background: #3a7ae4;
    border: transparent;
    outline: 0;
    width: 100%;
    height: 50px;
    color: #fff;
    margin-bottom: 16px;
    padding: 0 19px;
    border-radius: 5px;
}

.style-one .single-input-box input::placeholder {
    color: #fff;
}

.style-one .single-input-box textarea {
    background: #3a7ae4;
    border: transparent;
    outline: 0;
    width: 100%;
    height: 120px;
    color: #fff;
    margin-bottom: 16px;
    padding: 10px 19px;
    border-radius: 5px;
}

.style-one .single-input-box textarea::placeholder {
    color: #fff;
}

.style-one .single-input-box button {
    padding: 13px 15px;
    background: var(--secondary-color);
    display: block;
    color: #fff;
    border-radius: 7px;
    width: 100%;
    /* font-family: "Poppins", serif; */
    cursor: pointer;
    text-align: center;
    transition: .5s;
    border: none;
}

.col-lg-6.faqs-right {
    padding-left: 37px;
}

.faqs-container {
    overflow: hidden;
}

.faq-singular {
    position: relative;
    background: #CEDEF7;
    margin-bottom: 20px;
}

.faq-singular .faq-question {
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 16px 25px 15px 36px;
    font-weight: 700;
    font-size: 18px;
    border-radius: 5px;
    z-index: 2;
    transition: 0.5s;
    background: #CEDEF7;
    font-family: "Poppins", serif;
}

.faq-singular.active .faq-question {
    border-bottom: 1px solid #2222;
}

.faq-singular .faq-question:before {
    position: absolute;
    content: "+";
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: 400;
    transition: 0.5s;
    color: var(--secondary-color);
}

.faq-singular.active .faq-question:before {
    content: "-";
    font-size: 30px;
}

.faq-question img {
    padding-right: 12px;
}

.faq-answer {
    display: none;
    padding: 21px 40px 25px;
}


/*---=====================================================
   <!--Toptech Portfolio Area Css Style One-->
=========================================================---*/

.style-one.portfolio-area {
    padding: 8px 0 100px;
}

.style-one.portfolio-area .section-title.left {
    margin-bottom: 56px;
}

.style-one .single-portfolio-box {
    position: relative;
    padding: 0 10px;
}

.style-one .portfolio-thumb {
    position: relative;
}

.style-one .portfolio-thumb:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #041424;
    opacity: 0.6;
    transition: 0.5s;
    border-radius: 10px;
}

.style-one .single-portfolio-box:hover .portfolio-thumb:before {
    width: 100%;
    left: 0;
}

.style-one .portfolio-thumb img {
    width: 100%;
    border-radius: 10px;
}

.style-one .portfolio-content {
    background: var(--secondary-color);
    padding: 0 0 26px;
    border-radius: 10px;
    margin: auto;
    width: 85%;
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    transform: translate(0%, 0) rotateX(90deg);
    transition: 0.5s;
}

.style-one .single-portfolio-box:hover .portfolio-content {
    transform: translate(0%, 0) rotateX(0deg)
}

.style-one .portfolio-button a {
    display: inline-block;
    background: #fff;
    width: 100%;
    text-align: center;
    font-size: 39px;
    color: var(--secondary-color);
    padding: 5px 0;
    border-radius: 10px 10px 0 0;
}

.style-one .portfolio-title {
    padding: 23px 22px 0;
}

.style-one .portfolio-title a {
    display: inline-block;
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    font-family: "Poppins", serif;
}

.style-one .portfolio-title p {
    color: #fff;
    margin: 4px 0 0;
}





/*---=====================================================
   <!--Toptech Team Area Css Style One-->
=========================================================---*/

.style-one.team-area {
    padding: 10px 0 121px;
}

.style-one.team-area .section-title.center {
    margin-bottom: 57px;
}

.style-one .single-team-box {
    position: relative;
}

.style-one .single-team-box img {
    width: 100%;
    border-radius: 10px;
}

.style-one .team-content {
    position: absolute;
    bottom: -74px;
    left: 0;
    width: 100%;
}

.style-one .team-bio {
    padding: 10px 0 17px;
    background: var(--secondary-color);
    text-align: center;
    width: 80%;
    position: relative;
    margin: auto;
    border-radius: 10px 10px 0 0;
    transform: perspective(500px) rotateX(90deg);
    -webkit-transition: all 400ms linear 0ms;
    transition: all 400ms linear 0ms;
}

.style-one .single-team-box:hover .team-bio {
    transform: perspective(500px) rotateX(0);
}

.style-one .team-bio h4 {
    font-size: 22px;
    padding: 0 0 4px;
    color: #fff;
}

.style-one .team-bio p {
    font-size: 16px;
    color: #fff;
    font-family: "Poppins", serif;
    font-weight: 400;
    margin: 0 0 5px;
}

.style-one .team-social-icon ul {
    position: relative;
    z-index: 1;
    left: 10%;
    width: 80%;
    background: #131323;
    text-align: center;
    padding: 14px 0 14px;
    border-radius: 0 0 10px 10px;
    transform: perspective(500px) rotateX(-90deg);
    -webkit-transition: all 400ms linear 0ms;
    transition: all 400ms linear 0ms;
    top: -1px;
}

.style-one .single-team-box:hover .team-social-icon ul {
    transform: perspective(500px) rotateX(0);
}

.style-one .team-social-icon ul li {
    display: inline-block;
}

.style-one .team-social-icon ul a {
    width: 38px;
    height: 38px;
    line-height: 41px;
    text-align: center;
    border-radius: 50px;
    background-color: #373644;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    margin-right: 6px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}


/*---=====================================================
   <!--Toptech Testimonial Area Css Style One-->
=========================================================---*/
.style-one.testimonial-area {
    background: url(../images/testi-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 110px 0 102px;
}

.style-one.testimonial-area .section-title.center {
    margin-bottom: 14px;
    padding: 50px 0px;
}

.style-one .testi-desc p {
    font-size: 20px;
    line-height: 34px;
    color: #041424;
    width: 65%;
    margin: auto;
    /* margin-top: 176px; */
}

.style-one .testi-rating {
    margin-top: 20px;
}

.style-one .testi-rating ul li {
    display: inline-block;
}

.style-one .testi-rating ul li i {
    color: #FF9100;
    margin: 0 3px;
}

.style-one .testi-author h4 {
    font-size: 24px;
    margin: 53px 0 5px;
    font-weight: 600;
    position: relative;
}

.style-one .testi-author h4:before {
    position: absolute;
    content: "";
    width: 28px;
    height: 2px;
    left: 0;
    right: 0;
    top: -25px;
    background: #0B59D7;
    margin: auto;
}

/* .style-one.testimonial-area .owl-dots {
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    text-align: center;
}

.style-one.testimonial-area .owl-dot {
    background: url(../images/home-1/testi-1.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center;
    width: 100px;
    height: 100px;
    margin: 0 22px;
    display: inline-block;
}

.style-one.testimonial-area .owl-dot:nth-child(2){
    background: url(../images/home-1/testi-2.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center;
}

.style-one.testimonial-area .owl-dot:nth-child(3){
    background: url(../images/home-1/testi-3.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center;
}

.style-one.testimonial-area .owl-dot:nth-child(4){
    background: url(../images/home-1/testi-4.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center;
}

.style-one.testimonial-area .owl-dot.active{
    transform: scale(1.1);
    border: 6px solid var(--secondary-color);
    border-radius: 50%;
} */

.style-one.testimonial-area .owl-prev {
    display: inline-block;
    position: absolute;
    left: 14px;
    top: 31%;
}

.style-one.testimonial-area .owl-prev i {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
    background-color: #ffffff;
    line-height: 60px;
    color: var(--secondary-color);
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    line-height: 65px;
}

.style-one.testimonial-area .owl-next {
    display: inline-block;
    position: absolute;
    right: 9px;
    top: 31%;
}

.style-one.testimonial-area .owl-next i {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
    background-color: #ffffff;
    line-height: 65px;
    color: var(--secondary-color);
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
}

.style-one.testimonial-area .owl-next i,
.style-one.testimonial-area .owl-prev i:hover {
    background: var(--secondary-color);
    color: #fff;
}



/*---=====================================================
   <!--Toptech Blog Area Css Style One-->
=========================================================---*/
.style-one.blog-area {
    padding: 107px 0 100px;
}

.style-one .single-blog-box {
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid rgba(29, 33, 36, 0.12);
    position: relative;
    z-index: 1;
    transition: .5s;
    overflow: hidden;
    padding: 24px;
    padding-bottom: 19px;
}

.style-one .blog-thumb {
    overflow: hidden;
}

.style-one .blog-thumb img {
    width: 100%;
    transition: 0.5s;
}

.style-one .single-blog-box:hover .blog-thumb img {
    transform: scale(1.2);
}

.style-one .blog-content {
    padding: 28px 0 30px;
}

.style-one .blog-meta span {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Poppins", serif;
}

.style-one .blog-meta i {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 15px;
    padding-right: 7px;
}

.style-one .blog-content a {
    display: inline-block;
    font-size: 25px;
    color: #232323;
    font-weight: 700;
    font-family: "Poppins", serif;
    margin-top: 14px;
    line-height: 30px;
    transition: 0.5s;
}

.style-one .blog-content a:hover {
    color: var(--secondary-color);
}

.style-one .blog-buttom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(29, 33, 36, 0.12);
    padding-top: 20px;
}

.style-one .blog-author span {
    display: inline-block;
    color: #232323;
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    font-family: "Poppins", serif;
}

.style-one .blog-author i {
    display: inline-block;
    margin-right: 10px;
    color: #222;
}

.style-one .blog-button a {
    display: inline-block;
    color: #232323;
    font-family: "Poppins", serif;
    font-weight: 600;
    transition: .5s;
    font-size: 17px;
}

.style-one .blog-button a:hover {
    color: var(--secondary-color) !important;
}

.style-one .blog-button i {
    display: inline-block;
    font-size: 20px;
    position: relative;
    top: 2px;
    transition: 0.5s;
    color: #232323;
}

.style-one .blog-button a:hover i {
    color: var(--secondary-color) !important;
}


/*---=====================================================
   <!--Toptech Footer Area Css Style One-->
=========================================================---*/

.style-one.footer-area {
    background: url(../images/footer-bg.svg);
    background-color: #021438;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: center right; */

    padding: 80px 0 32px;
    position: relative;

}



.style-one.footer-area.home-three {
    padding: 435px 0 32px;
}

.style-one .footer-widget-desc p {
    color: #fff;
    opacity: 0.8;
    width: 950px;
    margin: 28px auto;
    padding-bottom: 40px;
    font-size: 18px;
}

.style-one .footer-widget-title h4 {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    margin: 0 0 26px;
}

.style-one .footer-widget-menu ul li a {
    display: flex;
    color: #fff;
    line-height: 45px;
    font-family: "Poppins", serif;
    transition: 0.5s;
}

.style-one .footer-widget-menu ul li a:hover {
    color: var(--fourth-color);
}

.style-one .footer-widget-content ul li i {
    display: inline-block;
    color: var(--primary-color);
    font-size: 16px;
    margin-right: 10px;
}

.style-one .footer-newslatter-box input {
    background: transparent;
    border: 1px solid #ffffff52;
    padding: 0 15px;
    height: 60px;
    width: 100%;
    color: #fff;
    border-radius: 3px;
    outline: 0;
}

.style-one .footer-newslatter-box input::placeholder {
    color: #fff;
    font-family: "Poppins", serif;
    opacity: 0.5;
}

.style-one .footer-newslatter-box button {
    background: #0C59DB;
    color: #fff;
    border: transparent;
    outline: 0;
    padding: 12px 33px;
    border-radius: 3px;
    margin-top: 21px;
}

.style-one p.f-desc-2 {
    color: #fff;
    margin: 0 0 27px;
    opacity: 0.8;
}

.style-one .footer-bottom-area {
    border-top: 1px solid #ffffff21;
    margin-top: 107px;
    padding-top: 30px;
}

.style-one .footer-bottom-content p {
    color: #fff;
    margin: 0;
    text-align: center;
}

.style-one .footer-botton-social-icon {
    text-align: right;
}

.style-one .footer-botton-social-icon ul li {
    display: inline-block;
}

.style-one .footer-botton-social-icon ul li i {
    background: #354662;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    color: #fff;
    font-size: 14px;
    margin-left: 7px;
    transition: 0.5s;
}

.style-one .footer-botton-social-icon ul li i:hover {
    background: #0C59DB;
}




/*---=====================================================
   <!--Toptech Home Two All Css-->
=========================================================---*/

/*Toptech Top header Area Css Style two*/

.top-header-area {
    background: #00194c;
    padding: 12px 0;
    position: relative;
    z-index: 1;
}

.top-header-area:before {
    position: absolute;
    content: "";
    width: 53%;
    height: 100%;
    left: -11px;
    top: 0;
    background: #0C59DB;
    z-index: -1;
    transform: skew(23deg);
}


.header-info ul li {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    margin-right: 14px;
}

.header-info ul li i {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    margin-right: 8px;
    position: relative;
    top: 2px;
}

.top-header-social-icon {
    text-align: right;
}

.top-header-social-icon ul li {
    display: inline-block;
    color: #fff;
}

.top-header-social-icon ul li.time-line {
    margin-right: 32px;
}

.top-header-social-icon ul li.time-line i {
    margin-right: 10px;
    display: inline-block;
}

.top-header-social-icon ul li i {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    margin-left: 16px;
    transition: 0.5s;
}

.top-header-social-icon ul li i:hover {
    color: var(--secondary-color);
}


/*Toptech header Are Style two*/

.header-area.style-two {
    margin-bottom: 0;
}

.header-search-icon {
    display: inline-block;
    margin-right: 34px;
}

.style-two .header-search-icon i {
    display: inline-block;
    color: #686868;
    transition: 0.5s;
}

.style-two .header-search-icon i:hover {
    color: var(--secondary-color);
}

.style-two .header-menu ul li a {
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: #000048;
    font-family: "Poppins", serif;
    transition: 0.5s;
}

.style-two .header-menu ul li a:hover {
    color: var(--secondary-color);
}

.style-two .header-button a {
    padding: 11px 28px;
    color: #fff;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: .5s;
    text-transform: capitalize;
    font-weight: 600;
    font-family: "Poppins", serif;
    transition: 0.5s;
}

.style-two .header-button a:hover {
    color: var(--secondary-color);
    background: #fff;
}

.style-two .header-menu ul li i {
    color: #000048;
}

.style-two.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background: #fff !important;
    transition: 0.5s;
    z-index: 999 !important;
    -webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    animation-name: slideInDown;
}

/*---=====================================================
   <!--Toptech hero Area Home Two All Css-->
=========================================================---*/
.style-two.hero-area {
    background: url(../images/home-2/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 800px;
    overflow: hidden;
    padding-bottom: 80px;
}

.style-two .hero-content h4 {
    margin: 0 0 3px;
    font-size: 19px;
    line-height: 45px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    /* font-family: "Rajdhani"; */
}

.style-two .hero-content h1 {
    font-size: 70px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 74px;
    font-weight: 700;
    /* font-family: "Rajdhani"; */
}

.style-two .hero-content p {
    color: #B6B9C0;
    width: 72%;
    font-size: 18px;
    margin: 11px 0 0;
}

.style-two .hero-button {
    margin-top: 49px;
}

.style-two .hero-button a {
    padding: 15px 37px 15px 42px;
    font-weight: 500;
    color: #fff;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    display: inline-block;
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-family: "Poppins", serif;
    margin-right: 17px;
    transition: 0.5s;
}

.style-two .hero-button a:hover {
    color: var(--secondary-color);
}

.style-two .hero-button a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    right: 0;
    top: 0;
    background: #fff;
    z-index: -1;
    border-radius: 5px;
    transition: 0.5s;
}

.style-two .hero-button a:hover:before {
    width: 100%;
    left: 0;
}

.style-two .hero-button i {
    color: #fff;
    display: inline-block;
    padding-left: 11px;
    position: relative;
    top: 1px;
    transition: 0.5s;
}

.style-two .hero-button a:hover i {
    color: var(--secondary-color);
}

.style-two .hero-right {
    position: relative;
}

.style-two .hero-thumb {
    position: relative;
    left: -48px;
    top: 70px;
}

.style-two .hero-shape {
    position: absolute;
    top: 28%;
    left: -96px;
    animation: rotateme 20s linear infinite;
}


/*---=====================================================
   <!--Toptech Feature area Home Two Css-->
=========================================================---*/

.style-two.feature-area {
    padding: 22px 0 0;
}

.style-two.feature-area .row.add-marging {
    margin-top: -90px;
}

.style-two .single-feature-box {
    text-align: center;
    filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
    background: #fff;
    padding: 56px 42px 33px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin-bottom: 23px;
}

.style-two .single-feature-box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    background: url(../images/home-2/feature-box-shape.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
    transition: 0.5s;
}

.style-two .single-feature-box:hover:before {
    height: 100%;
}

.style-two .feature-icon {
    position: relative;
    z-index: 1;
}

.style-two .feature-icon:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 201%;
    left: 0;
    right: 0;
    top: -19px;
    background: url(../images/home-2/feature-shape-1.png);
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.5s;
    z-index: -1;
}

.style-two.feature-area .single-feature-box:hover .feature-icon:before {
    background: url(../images/home-2/feature-shape-2.png);
    background-repeat: no-repeat;
    background-position: center;
}

.style-two .feature-content h4 {
    transition: .5s;
    padding: 35px 0 13px 0;
    font-size: 26px;
    color: #041424;
    font-weight: 700;
    /* font-family: "Rajdhani"; */
    text-align: center;
}

.style-two .single-feature-box:hover .feature-content h4 {
    color: #fff;
}

.style-two .feature-content p {
    margin: 0 0 20px;
    transition: 0.5s;
}

.style-two .single-feature-box:hover .feature-content p {
    color: #fff;
}

.style-two .feature-content a {
    padding: 0 0 0 12px;
    color: #fff;
    display: inline-block;
    margin-top: 0;
    position: relative;
    z-index: 1;
    transition: .5s;
    font-size: 16px;
    font-weight: 400;
}

.style-two .single-feature-box:hover .feature-content a {
    color: #fff;
}

.style-two .feature-content a:after {
    position: absolute;
    content: "";
    z-index: 1;
    top: 12px;
    left: 35px;
    width: 30px;
    height: 2px;
    background: #0b59db !important;
    transition: .5s;
}

.style-two .single-feature-box:hover .feature-content a:after {
    left: -24px;
    background: #fff !important;
}



/*---=====================================================
   <!--Toptech About Area Home two Css-->
=========================================================---*/
.style-two.about-area {
    background: #F3F7FD;
    /* padding: 380px 0 126px; */
    /* margin-top: -287px; */
}

.style-two.about-area .toptech-button a {
    margin-top: 12px;
}

.style-two .about-left {
    position: relative;
}

.style-two .about-shape {
    position: absolute;
    right: 76px;
    bottom: 27px;
    animation: bounceleft 4s linear infinite;
}

.style-two .about-conter-box {
    background: #0C59DB;
    display: inline-block;
    text-align: center;
    padding: 16px 40px;
    position: absolute;
    top: 3px;
    left: 5px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.style-two .about-conter-box:before {
    position: absolute;
    content: "";
    width: 170px;
    height: 170px;
    left: -2px;
    top: -57px;
    background: #1164ED;
    border-radius: 50%;
    z-index: -1;
}

.style-two .about-counter-title span,
.style-two .about-counter-title h4 {
    font-size: 56px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    padding: 0 0 16px 0;
    display: inline-block;
    /* font-family: "Rajdhani"; */
}

.style-two .about-counter-title h4:before {
    position: absolute;
    content: "";
    width: 26px;
    height: 2px;
    left: 24px;
    bottom: 4px;
    background: #fff;
}

.style-two .about-counter-title p {
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    text-align: center;
    padding: 20px 0 0 0;
}

.style-two .about-right {
    position: relative;
}

.style-two .single-about-icon-box {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 29px;
}

.style-two .about-icon {
    line-height: 66px;
    text-align: center;
    width: 80px;
    height: 66px;
    border-radius: 10px;
    transition: 0.5s;
    filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
    background-color: #ffff;
}

.style-two .about-icon-box-content h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.style-two .about-shape-two {
    position: absolute;
    bottom: 0;
    left: 239px;
    animation: bounceleft 4s linear infinite;
}



/*section-title-style-two*/

.style-two.section-title {
    margin-bottom: 42px;
}

.style-two.section-title.center {
    margin-bottom: 52px;
}

.style-two.section-title h4 {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0 0 24px;
}

.style-two.section-title h1 {
    font-size: 45px;
    color: #041424;
    font-weight: 400;
    line-height: 55px;
}

.style-two.section-title p {
    margin: 19px 0 0;
}



/*---=====================================================
   <!--Toptech Service Area Home two Css-->
=========================================================---*/
.style-two.service-area {
    background: url(../images/home-2/service-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 120px 0 100px;
}

.style-two.service-area .section-title h1 {
    color: #fff;
}

.style-two .single-services-box {
    padding: 37px 0 30px 40px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    border-radius: 5px;
}

.style-two .single-services-box:before {
    position: absolute;
    content: "";
    left: 50%;
    top: 0;
    width: 0;
    height: 100%;
    background: #0B5ADB;
    transition: .5s;
    z-index: -1;
    border-radius: 5px;
}

.style-two .single-services-box:hover:before {
    left: 0;
    width: 100%;
}

.service-icon-thumb {
    position: relative;
}

.service-icon-thumb:before {
    position: absolute;
    content: "";
    left: -8px;
    top: -7px;
    width: 40px;
    height: 40px;
    background: #E6EEFB;
    transition: .5s;
    z-index: -1;
    border-radius: 100%;
}

.style-two .single-services-box:hover .service-icon-thumb:before {
    background: #2F73E0;
}

.service-icon-thumb img {
    transition: 0.5s;
}

.style-two .single-services-box:hover .service-icon-thumb img {
    filter: brightness(0) invert(1);
}

.style-two .service-number h1 {
    background: #E6EEFB;
    position: absolute;
    right: 0;
    top: 33px;
    transition: 0.5s;
    font-size: 26px;
    line-height: 50px;
    color: var(--secondary-color);
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    padding: 0 14px 0 28px;
    border-radius: 30px 0 0 30px;
    margin: 0;
}

.style-two .service-content h4 {
    font-size: 26px;
    line-height: 50px;
    color: #041424;
    font-weight: 700;
    margin: 16px 0 12px 0;
    transition: 0.5s;
}

.style-two .single-services-box:hover .service-content h4,
.service-content p {
    color: #fff;
}

.style-two .service-content p {
    margin: 0 0 24px;
    transition: 0.5s;
    color: #686868;
}

.style-two .single-services-box:hover .service-content p {
    color: #fff;
}

.style-two .service-content a {
    display: inline-block;
    transition: .5s;
    font-size: 19px;
    letter-spacing: -10px;
    color: #fff;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
}

.style-two .single-services-box:hover .service-content a {
    letter-spacing: 0;
}

.style-two .service-content i {
    display: inline-block;
    color: #0B59DB;
    font-size: 22px;
    transition: 0.5s;
}

.style-two .single-services-box:hover .service-content i {
    left: 7px;
    position: relative;
}

/*---=====================================================
   <!--Toptech Team Area Css Home Two-->
=========================================================---*/
.style-two.team-area {
    background: url(../images/team-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 119px 0 91px;
}

.style-two.team-area .section-title {
    margin-bottom: 48px;
}

.style-two.team-area .toptech-button {
    text-align: right;
    margin-top: 40px;
}

.style-two .single-team-box {
    margin-bottom: 30px;
    position: relative;
}

.style-two .team-thumb img {
    width: 100%;
}

.style-two .team-content {
    position: relative;
    filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
    background-color: rgb(238, 238, 238);
    text-align: center;
    padding: 24px 0 75px;
    border-radius: 4px;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 50% 60%, 0 100%);
    transition: 0.5s;
    height: 115px;
}

.style-two .single-team-box:hover .team-content {
    background-color: var(--primary-color);
    margin-top: -15px;
    height: 120px;
}

.style-two .team-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 4px;
    transition: 0.5s;

}

.style-two .single-team-box:hover .team-content p,
.style-two .single-team-box:hover .team-content h4 {
    color: #fff;
}

.style-two .team-content p {
    margin: 2px 0 0;
}

.style-two .team-shape {
    position: absolute;
    bottom: -54px;
    left: -10px;
}

.style-two .team-socila-icon-box {
    position: absolute;
    left: 125px;
    bottom: -21px;
}

.style-two .team-share {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    background: var(--secondary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: 0.5s;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    line-height: 45px;
    text-align: center;
}

.style-two .single-team-box.active .team-share {
    background: #fff;
    color: var(--secondary-color);
}

.style-two .team-social-icon {
    position: relative;
    top: -81px;
    left: -27px;
}

.style-two .team-social-icon ul li {
    list-style: none;
    margin-bottom: 5px;
    display: inline-block;
}

.style-two .team-social-icon ul li a {
    display: inline-block;
    color: #fff;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    position: relative;
    font-size: 16px;
    margin: 0 5px;
}

.style-two .team-social-icon.active ul li a {
    transform: translateY(0px);
    opacity: 1;
    overflow: hidden;
    visibility: visible;
}

.style-two .team-social-icon ul li:nth-child(1) a {
    transition-delay: 0.5s;
}

.style-two .team-social-icon ul li:nth-child(2) a {
    transition-delay: 0.4s;
}

.style-two .team-social-icon ul li:nth-child(3) a {
    transition-delay: 0.2s;
}

.style-two .team-social-icon ul li:nth-child(4) a {
    transition-delay: 0s;
}


/*---=====================================================
   <!--Toptech Counter Area Css Style Two-->
=========================================================---*/
.style-two.counter-area {
    background: url(../images/home-2/counter-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 75px 0 63px;
}

.style-two .counter-box {
    text-align: center;
    margin-bottom: 30px;
}

.style-two .counter-content span,
.style-two .counter-content h4 {
    font-size: 56px;
    color: #fff;
    font-weight: 700;
    display: inline-block;
    /* font-family: "Rajdhani"; */
}

.style-two .counter-content p {
    font-size: 15px;
    color: #fff;
    opacity: 0.6;
    text-transform: uppercase;
    margin: 4px 0 0;
}



/*---=====================================================
   <!--Toptech Portfolio Area Css Home Two-->
=========================================================---*/
.style-two.portfolio-area {
    background: url(../images/home-2/portfolio-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 118px 0 100px;
}

.style-two.portfolio-area .floating-btn-fluid {
    padding: 0 102px;
}


/* portfolio menu */
.style-two .portfolio_menu {
    text-align: center;
    padding: 0 0 45px;
}

.style-two li.current_menu_item {
    color: #2E6ADC !important;
}

.style-two .portfolio_menu ul li {
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    padding: 10px 32px;
    color: #021524;
    background: #fff;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
    font-weight: 500;
}

.style-two .portfolio_menu ul li:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: #564AC6;
    transform: scale(0);
    border-radius: 30px;
    transition: .5s;
}

.style-two .single-portfolio-box {
    position: relative;
}

.style-two .portfolio-thumb img {
    width: 100%;
    border-radius: 10px;
}

.style-two .portfolio-content {
    background: #fff;
    padding: 20px 26px 17px;
    display: flex;
    align-items: center;
    border-left: 7px solid #0C59DB;
    position: absolute;
    bottom: -65px;
    width: 75%;
    border-radius: 0 5px 5px 0;
}

.style-two .portfolio-number h1 {
    font-size: 76px;
    font-weight: 700;
    /* font-family: "Rajdhani"; */
    transition: .3s;
    position: relative;
    margin: 0 16px 0 0;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #DADDDF;
}

.style-two .single-portfolio-box:hover .portfolio-number h1 {
    -webkit-text-stroke-color: #0B59D7;
}

.style-two .portfolio-title a {
    transition: .3s;
    font-size: 24px;
    line-height: 28px;
    color: #041424;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    display: inline-block;
    position: relative;
}

.style-two .portfolio-title a:hover {
    color: #0B59D7;
}

.style-two .portfolio-title a i {
    display: inline-block;
    background: #0B59D7;
    color: #fff;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50% 50% 50% 0;
    text-align: center;
    position: absolute;
    top: -84px;
    right: -72px;
    opacity: 0;
    transition: 0.5s;
}

.style-two .single-portfolio-box:hover .portfolio-title a i {
    opacity: 1;
}



/*---=====================================================
   <!--Toptech Portfolio Area Css Home Two-->
=========================================================---*/
.style-two.working-proces-area {
    background: #021533;
    padding: 247px 0 90px;
    margin-top: -163px;
}

.style-two.working-proces-area .section-title.center {
    margin-bottom: 72px;
}

.style-two.working-proces-area .section-title h1 {
    font-size: 42px;
    color: #ffff;
    font-weight: 700;
    line-height: 40px;
}

.style-two .working-process-box {
    text-align: center;
    padding: 0 50px 0;
    position: relative;
    margin-bottom: 30px;
}

.style-two .working-process-box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: -81px;
    top: 73px;
    background: url(../images/home-2/porcess-shape1.png);
    background-repeat: no-repeat;
}

.style-two .working-process-box.before-transprent:before {
    background: transparent;
}

.style-two .working-process-box:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: -81px;
    top: 73px;
    background: url(../images/home-2/porcess-shape2.png);
    background-repeat: no-repeat;
}

.style-two .working-process-box.after-transprent:after {
    background: transparent;
}

.style-two .process-thumb {
    position: relative;
    margin-bottom: 44px;
}

.style-two .process-thumb:before {
    position: absolute;
    content: "";
    width: 244px;
    height: 244px;
    left: 36px;
    top: -13px;
    border: 2px dashed var(--secondary-color);
    border-radius: 50%;
    animation: rotateme 20s linear infinite;
}

.style-two .process-number span {
    position: absolute;
    left: 12%;
    top: 13%;
    z-index: 1;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50px;
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background-color: var(--secondary-color);
    transition: .5s;
}

.style-two .process-number.two span {
    left: 11%;
    top: 69%;
}

.style-two .process-content h4 {
    font-size: 23px;
    color: #fff;
    margin: 20px 0 10px;
    transition: .5s;
}

.style-two .process-content p {
    opacity: 0.502;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", serif;
    text-align: center;
    transition: .5s;
}


/*---=====================================================
   <!--Toptech Video Area Css Home Two-->
=========================================================---*/
.style-two.video-area {
    padding: 141px 0 159px;
    background: url(../images/home-2/video-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.style-two.video-area .section-title h1 {
    color: #fff;
}

.style-two .video-button {
    text-align: center;
}

.style-two .video-button i {
    display: inline-block;
    background: #0B59D7;
    color: #fff;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 72px;
    font-size: 35px;
    border-radius: 50%;
    -webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-blue 1s linear infinite;
    -webkit-transition: 0.5s;
}


@keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3),
            0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3),
            0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    }
}


/*---=====================================================
   <!--Toptech Contact info Area Css Home Two-->
=========================================================---*/
.style-two.contact-info-area {
    background: url(../images/home-2/contact-info-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 123px 0 125px;
}

.style-two .contact-info-box {
    background: #fff;
    padding: 29px 28px 27px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    border: 1px solid #0B59D7;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    gap: 29px;
}

.style-two .contact-info-box:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: #0B59D7;
    border-radius: 5px;
    transition: 0.5s;
    z-index: -1;
}

.style-two .contact-info-box:hover:before {
    width: 100%;
}

.style-two .contact-info-icon i {
    display: inline-block;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 56px;
    font-size: 22px;
    transition: 0.5s;
}

.style-two .contact-info-box:hover .contact-info-icon i {
    color: #fff;
    border: 2px solid #fff;
}

.style-two .contact-info-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 0 0 11px 0;
    transition: 0.5s;
}

.style-two .contact-info-box:hover .contact-info-content h4 {
    color: #fff;
}

.style-two .contact-info-content p {
    font-size: 26px;
    color: #0c59d7;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    margin: 0;
    padding: 0;
    transition: 0.5s;
}

.style-two .contact-info-box:hover .contact-info-content p {
    color: #fff;
}


/*---=====================================================
   <!--Toptech Pricing Area Css Home Two-->
=========================================================---*/
.style-two.pricing-area {
    background: url(../images/home-2/pricing-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 139px 0 80px;
}

.style-two.pricing-area .section-title h1 {
    color: #fff;
}

.style-two .faq-singular.active .faq-question {
    background: #0B59D7;
    color: #ffff;
    padding: 17px 20px 17px 32px;
}

.style-two .faq-singular {
    position: relative;
    background: transparent;
    margin-bottom: 20px;
    border-bottom: 1px solid #cedef759;
}

.style-two .faq-singular .faq-question {
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 0 0 19px 0;
    font-weight: 600;
    font-size: 24px;
    border-radius: 5px;
    z-index: 2;
    transition: 0.5s;
    background: transparent;
    /* font-family: "Rajdhani"; */
    color: #fff;
}

.style-two .faq-answer {
    display: none;
    padding: 27px 25px 25px 0;
    opacity: 0.502;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", serif;
}

.style-two .faq-singular .faq-question:before {
    position: absolute;
    content: "+";
    right: 0;
    top: 33%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: 400;
    transition: 0.5s;
    color: #ffff;
}

.style-two .faq-singular.active .faq-question:before {
    content: "-";
    font-size: 30px;
    top: 32px;
    right: 16px;
}

.style-two .pricing-right {
    padding-left: 116px;
}

.style-two .single-pricing-box {
    background: #0B59D7;
    padding: 1px 37px 40px;
    position: relative;
    border-radius: 5px;
    margin-bottom: 45px;
}

.style-two a.pricing-tag {
    color: #0B59D7;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    position: absolute;
    right: 25px;
    top: -17px;
    background: #ffff;
    border-radius: 5px;
    padding: 6px 21px;
    display: inline-block;
    text-transform: uppercase;
}

.style-two span.pricing-text {
    margin: 33px 0 17px;
    transition: .5s;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    text-transform: uppercase;
    display: inherit;
}

.style-two h4.pricing {
    color: #fff !important;
    font-size: 40px;
    font-weight: 600;
    position: absolute;
    right: 25px;
    top: 45px;
    margin: 0;
}

.style-two h4.pricing span {
    font-size: 18px;
}

.style-two .pricing-content {
    display: flex;
    gap: 20px;
}

.style-two .pricing-icon i {
    display: inline-block;
    font-size: 40px;
    color: #fff;
    margin-top: 5px;
}

.style-two .pricing-title h4 {
    margin: 0;
    font-size: 28px;
    color: #ffff;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
}

.style-two .pricing-title p {
    color: #fff;
    margin: 12px 0 8px;
    opacity: 0.8;
}

.style-two .pricing-title a {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 9px 25px;
    border-radius: 5px;
    margin-top: 18px;
    transition: 0.5s;
}

.style-two .pricing-title a:hover {
    background: #fff;
    color: var(--secondary-color);
}

/*style-two*/

.style-two .single-pricing-box.two {
    background: #fff;
}

.single-pricing-box.two span.pricing-text {
    color: #041424;
}

.single-pricing-box.two h4.pricing {
    color: #041424 !important;
}

.single-pricing-box.two h4.pricing span {
    color: #041424;
}

.single-pricing-box.two a.pricing-tag {
    color: #ffff;
    background: #0B59D7;
}

.single-pricing-box.two .pricing-icon i {
    color: #0B59D7;
}

.single-pricing-box.two .pricing-title h4 {
    color: #041424;
}

.single-pricing-box.two .pricing-title p {
    color: #686868;
}

.single-pricing-box.two .pricing-title a {
    border: 1px solid #0B59D7;
    color: #041424;
    transition: 0.5s;
}

.single-pricing-box.two .pricing-title a:hover {
    background: var(--secondary-color);
    color: #fff;
}



/*---=====================================================
   <!--Toptech Blog Area Css Home Two-->
=========================================================---*/
.style-one.blog-area.home-two {
    background: #F3F8FC;
    padding: 117px 0 105px;
}

.style-one.home-two .blog-content {
    padding: 28px 2px 30px;
}

.style-one.home-two .blog-content a {
    font-size: 23px;
    font-weight: 600;
    line-height: 30px;
}



/*---=====================================================
   <!--Toptech Brand Area Css Inner Style One-->
=========================================================---*/
.style-two.brand-area {
    background: url(../images/home-2/brand-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 80px 0 75px;
}

.style-two .single-brand-box {
    text-align: center !important;
    position: relative;
}

.style-two .brand-thumb img {
    width: inherit !important;
    text-align: center;
    display: inline-block;
}

/*---=====================================================
   <!--Toptech Home Theree All Css-->
=========================================================---*/


.style-three.hero-area {
    background: url(../images/home-3/hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 750px;
    overflow: hidden;
}

.style-three .hero-right {
    position: relative;
}

.style-three .hero-thumb {
    position: relative;
    left: -104px;
    top: 60px;
}

.style-three .hero-shape {
    position: absolute;
    top: 225px;
    right: -65px;
    animation: bounceleft 4s linear infinite;
}

.style-three .hero-content h4 {
    margin: 0 0 0px;
    font-size: 20px;
    line-height: 40px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    /* font-family: "Rajdhani"; */
}

.style-three .hero-content h1 {
    font-size: 66px;
    text-transform: capitalize;
    color: #ffffff;
    line-height: 66px;
    font-weight: 700;
    /* font-family: "Rajdhani"; */
}

.style-three .hero-content p {
    color: #B6B9C0;
    width: 66%;
    font-size: 18px;
    margin: 17px 0 0;
}

.style-three .hero-button {
    margin-top: 36px;
}

.style-three .hero-button a {
    padding: 15px 37px 15px 42px;
    font-weight: 500;
    color: #fff;
    background: var(--secondary-color);
    display: inline-block;
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-family: "Poppins", serif;
    margin-right: 17px;
}

.style-three .hero-button a:hover {
    color: var(--secondary-color);
}

.style-three .hero-button a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    right: 0;
    top: 0;
    background: #fff;
    z-index: -1;
    border-radius: 5px;
    transition: 0.5s;
}

.style-three .hero-button a:hover:before {
    width: 100%;
    left: 0;
}

.style-three .hero-button i {
    color: #fff;
    display: inline-block;
    padding-left: 11px;
    position: relative;
    top: 1px;
    transition: 0.5s;
}

.style-three .hero-button a:hover i {
    color: var(--secondary-color);
}

.style-three a.button-two {
    background: #262664 !important;
    border: transparent !important;
}


/*---=====================================================
   <!--Toptech Feature Area Home Threee Css-->
=========================================================---*/
.style-three.background-images-area {
    background: url(../images/about-inner/about-images-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 2px 0 255px !important;
    position: relative;
}

/*---=====================================================
   <!--Toptech Feature Area Css Inner Style One-->
=========================================================---*/

.style-three .row.margin-top {
    margin-top: -133px;
    position: relative;
}

.style-three .single-feature-box {
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid rgba(4, 20, 36, 0.1);
    padding: 37px 15px 18px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.style-three .single-feature-box:hover {
    border: 1px solid var(--secondary-color);
}

.style-three .single-feature-box:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--secondary-color);
    z-index: -1;
    transition: 0.5s;
    border-radius: 2px;
}

.style-three .single-feature-box:hover:before {
    width: 100%;
    left: 0;
}

.style-three .feature-icon img {
    transition: 0.5s;
}

.style-three .single-feature-box:hover .feature-icon img {
    filter: brightness(1) invert(1);
}

.style-three .feature-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 15px;
    transition: 0.5s;
}

.style-three .single-feature-box:hover .feature-content h4 {
    color: #fff;
}

.style-three .feature-content p {
    transition: 0.5s;
}

.style-three .single-feature-box:hover .feature-content p {
    color: #fff;
}



/*---=====================================================
   <!--Toptech About Area Home theree Css-->
=========================================================---*/

.style-three.about-area {
    padding: 90px 0 121px;
}

.style-three.about-area .style-two.section-title {
    margin-bottom: 18px;
}

.style-three .about-left {
    position: relative;
    left: -80px;
}

.style-three .abour-award-box {
    position: absolute;
    top: 19px;
    right: 43px;
    display: flex;
    align-items: center;
    gap: 22px;
    animation: bounceleft 6s linear infinite;
}

.style-three .about-award-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    border-bottom: 2px solid #222;
    padding: 0 0 6px;
}

.style-three .about-award-content p {
    font-size: 20px;
    color: #041424;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    line-height: 32px;
    margin: 0;
}

.style-three .about-shape {
    position: absolute;
    bottom: 35px;
    left: 111px;
    animation: bounceleft 4s linear infinite;
}

.style-three .about-video-box {
    position: absolute;
    top: 40%;
    left: 42%;
}

.style-three .about-video-box i {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background-color: var(--secondary-color);
    border: 2px solid #ffffff;
    display: inline-block;
    text-align: center;
    color: #fff;
    line-height: 100px;
    font-size: 30px;
}

.style-three .abour-right {
    position: relative;
}

.style-three .about-list-item ul li {
    color: #041424;
    font-weight: 500;
    line-height: 37px;
}

.style-three .about-list-item ul li i {
    display: inline-block;
    color: #0C59DB;
    font-size: 18px;
    margin-right: 15px;
}

.style-three .about-phone {
    border-radius: 10px;
    background-color: #eff6fd;
    display: flex;
    gap: 17px;
    align-items: center;
    width: 51%;
    padding: 29px 37px;
    position: absolute;
    right: -22px;
    bottom: 115px;
}

.style-three .about-phone-content h4 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
}

.style-three .about-phone-icon {
    float: left;
}

.style-three .about-shape-two {
    position: absolute;
    bottom: 24px;
    left: 44%;
    animation: bounceleft 4s linear infinite;
}



/*---=====================================================
   <!--Toptech Service Area Home theree Css-->
=========================================================---*/
.style-three.service-area {
    background: #F3F8FC;
    padding: 119px 0 100px;
}

.style-three .single-service-box {
    background-color: #fff;
    padding: 45px 38px 41px;
    position: relative;
    z-index: 99;
    border-radius: 3px;
    margin-bottom: 20px;
}

.style-three .single-service-box::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background-color: rgba(12, 90, 219, .1);
    transition: 0.5s;
    z-index: -1;
    border-radius: 3px;
}

.style-three .single-service-box:hover::before {
    width: 100%;
    height: 100%;
}

.style-three .service-content h4 {
    font-size: 26px;
    color: var(--third-color);
    font-weight: 500;
    /* font-family: "Rajdhani"; */
    margin: 21px 0 0;
}

.style-three .service-content p {
    color: #686868;
    margin: 12px 0 0;
}



/*---=====================================================
   <!--Toptech Counter Area Home Threee Css-->
=========================================================---*/
.style-three .row.add-bg {
    background: url(../images/counter-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 63px 40px 40px;
    margin: -103px 0;
    position: relative;
}

.style-three .single-counter-box {
    text-align: center;
    position: relative;
    margin-bottom: 25px;
}

.style-three .single-counter-box:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100px;
    right: 0;
    top: 0;
    background-image: linear-gradient(0deg, #fd7e14 0%, #fd7e14 10%, #ffffff 50%, #fd7e14 90%, #fd7e14 100%);
}

.style-three .single-counter-box.last-child:before {
    background: transparent;
}

.style-three .counter-content h4 {
    font-size: 50px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    display: inline-block;
}

.style-three .counter-content span {
    font-size: 50px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    display: inline-block;
}

.style-three .counter-content p {
    opacity: 0.800;
    font-size: 16px;
    color: #ffffff;
    margin: 0 0 0;
}

/*---=====================================================
   <!--Toptech Portfoli Area Home Threee Css-->
=========================================================---*/
.style-three.portfolio-area {
    background: var(--primary-color);
    padding: 118px 0 97px;
}

.style-three.portfolio-area .floating-btn-fluid {
    padding: 0 134px 0;
}

.style-three.portfolio-area .section-title h1 {
    color: #ffff;
}

.style-three .single-portfolio-box {
    position: relative;
    margin: 0 12px 81px;
}

.style-three .portfolio-thumb img {
    width: 100%;
}

.style-three .portfolio-content {
    border-radius: 5px;
    filter: drop-shadow(0px 10px 25px rgba(175, 189, 199, 0.2));
    background: #fff;
    padding: 30px 38px 30px;
    width: 84%;
    left: 0;
    right: 0;
    position: absolute;
    bottom: -55px;
    margin: auto;
}

.style-three .portfolio-content h4 {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0 0 11px;
}

.style-three .portfolio-content a {
    display: inline-block;
    font-size: 26px;
    color: #041424;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    transition: 0.5s;
}

.style-three .portfolio-content a:hover {
    color: var(--secondary-color);
}

.style-three .portfolio-content a.button {
    display: inline-block;
    background: var(--secondary-color);
    width: 50px;
    height: 50px;
    line-height: 54px !important;
    color: #fff !important;
    text-align: center;
    border-radius: 50%;
    font-size: 18px !important;
    position: absolute;
    right: -19px;
    top: 40px;
    opacity: 0;
    transition: 0.5s;
}

.style-three .single-portfolio-box:hover .portfolio-content a.button {
    opacity: 1;
}

/*---=====================================================
   <!--Toptech Teastimonial Area Css Style Threee-->
=========================================================---*/
.style-three.teastimonial-area {
    background: #F3F8FC;
    padding: 120px 0 88px;
}

.style-three .single-testi-box {
    text-align: center;
    margin-bottom: 30px;
}

.style-three .testi-content {
    border-radius: 3px;
    background-color: #ffffff;
    padding: 40px 35px 70px;
}

.style-three .testi-desc p {
    font-size: 18px;
    line-height: 30px;
    color: #041424;
    margin: 22px 0 27px;
}

.style-three .testi-rating ul li {
    display: inline-block;
}

.style-three .testi-rating ul li i {
    display: inline-block;
    color: #FE9E13;
}

.style-three .teasti-author {
    margin-top: -43px;
}

.style-three .testi-author-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 17px 0 0px;
}









/*---=====================================================
   <!--Toptech Contact Info Area Css Style Threee-->
=========================================================---*/

.style-three.contact-area-info {
    background: url(../images/join-team-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0 120px;
    overflow: hidden;
}

.style-three.contact-area-info .contact-content h6 {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    margin-top: 25px;
}

.style-three.contact-area-info .contact-content h1 {
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    margin-top: 27px;
}

.style-three.contact-area-info .contact-content p {
    color: rgb(223 223 223);
    font-size: 16px;
    line-height: 28px;
    width: 86%;
    margin: 21px 0 0;
}

/* .style-three.contact-area-info .contact-right {
    position: relative;
} */

.style-three.contact-area-info .contact-thumb {
    position: absolute;
    top: -95px;
    right: 84px;
}

.style-three.contact-area-info .contact-shape {
    position: absolute;
    left: -51px;
    top: 120px;
    animation: dance 2s linear infinite;
}

/*---=====================================================
   <!--Toptech Choose Us Area Css Style Three-->
=========================================================---*/
.style-three .choose-us-area {
    background: #f3f8fd;
    padding: 116px 0 126px;
}

.style-three.choose-us-area {
    background: #f3f8fd;
    /* padding: 225px 0 126px; */
}

.style-three.choose-us-area .inner-style.section-title.left p.section-desc {
    width: 84%;
}

.skill {
    /* text-align: center; */
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.skill>p {
    font-size: 18px;
    font-weight: 700;
    color: #1a1716;
    margin: 0 0 11px;
    /* font-family: "Rajdhani"; */
}

/* .skill:before {
    width: 85%;
    height: 7px;
    content: "";
    display: block;
    position: absolute;
    background: #D1DFF9;
    bottom: 0;
}

.skill-bar {
    width: 74% !important;
    height: 7px;
    background: #0C59DB;
    display: block;
    position: relative;
} */

/* SKILL 1 */
.skill1 {
    width: 95%;
}

.skill-bar span {
    position: absolute;
    top: -40px;
    padding: 0;
    font-size: 18px;
    padding: 3px 0;
    font-weight: 500;
    color: #0C59DB;
}

.skill-bar {
    position: relative;
}

.skill1 .skill-count1 {
    right: 0;
}

/* SKILL 2 */
.skill2 {
    width: 66% !important;
}

.skill2 .skill-count2 {
    right: 0;
}

.style-three .single-pricing-box {
    /* background: linear-gradient(45deg, #0267b4ed, #cf0e16ed); */
    border-radius: 5px;
    background-color: #ffffff;
    text-align: center;
    padding: 41px 46px 42px;
    box-shadow: 0 35px 50px -30px rgba(0, 0, 0, 0.2);
}

.style-three .pricing-content {
    border-bottom: 1px solid #9b9b9b;
    margin-bottom: 17px;
    padding-bottom: 21px;
}

.style-three .pricing-content h4 {
    font-size: 26px;
    font-weight: 600;
    margin: 29px 0 5px;
}

.style-three .pricing-content h1 {
    /* color: #ffffff; */
    letter-spacing: 1px;
    font-size: 50px;
    margin: 0;
}

.style-three .pricing-content span {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", serif;
}

.style-three .pricing-list ul li {
    /* color: #ffffff; */
    line-height: 37px;
}

.style-three .pricing-button a {
    font-size: 16px;
    color: #041424;
    font-weight: 500;
    font-family: "Poppins", serif;
    display: inline-block;
    background: #E6EEFB;
    padding: 12px 30px;
    border-radius: 5px;
    margin-top: 26px;
    transition: 1s;
}

.style-three .pricing-button a:hover {
    background: var(--secondary-color);
    color: #fff;
}

.style-three .single-pricing-box.two {
    background: #000049;
}

.style-three .single-pricing-box.two .pricing-content h4 {
    color: #fff;
}

.style-three .single-pricing-box.two .pricing-content p {
    color: #fff;
}

.style-three .single-pricing-box.two .pricing-content h1 {
    color: #fff;
}

.style-three .single-pricing-box.two .pricing-content span {
    color: #fff;
}

.style-three .single-pricing-box.two .pricing-list ul li {
    color: #fff;
}

.style-three .single-pricing-box.two .pricing-button a {
    background: var(--secondary-color);
    color: #fff;
    transition: 1s;
}

.style-three .single-pricing-box.two .pricing-button a:hover {
    background: #E6EEFB;
    color: var(--secondary-color);
}

/*---=====================================================
   <!--Toptech Subscribe Area Css Style Three-->
=========================================================---*/
.product-section {
    background: url(../images/product-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 111px 0 293px;
}

.style-three.subscribe-area .section-title.left h1 {
    color: #fff;
}

.style-three .single-subscribe-box {
    position: relative;
    left: 98px;
    top: -17px;
}

.style-three .single-subscribe-box input {
    border: 1px solid #668ee7;
    width: 80%;
    background-color: transparent;
    color: #fff;
    height: 66px;
    padding: 10px 20px 10px;
    border-radius: 5px;
    outline: 0;
}

.style-three .single-subscribe-box input::placeholder {
    color: #fff;
}

.style-three .single-subscribe-box button {
    background: #fff;
    outline: 0;
    border: none;
    padding: 13px 26px;
    right: 134px;
    top: 0px;
    border-radius: 4px;
    position: relative;
}


/*---=====================================================
   <!--Toptech Process Area Css style-three-->
=========================================================---*/
.process-area.style-three {
    padding: 0 0 120px;
}

.style-three.process-area .row.add-bg {
    background: url(../images/home-3/process-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 116px 0 77px;
    margin-top: -200px;
    border-radius: 5px;
}

.style-three .single-process-box {
    text-align: center;
    padding: 0 50px 0;
}

.style-three .process-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-color: #0c59d7;
    text-align: center;
    line-height: 80px;
    position: relative;
    margin-bottom: 40px;
}

.style-three .process-icon:before {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    border: 2px dashed var(--secondary-color);
    top: -10px;
    left: -10px;
    border-radius: 50%;
}

.style-three .process-content h4 {
    display: inline-block;
    margin: 0 0 9px;
    font-size: 26px;
    font-weight: 600;
}


.style-one.blog-area.style-three {
    background: #F3F8FC;
    padding: 340px 0 418px;
    margin-top: -239px;
}

/*---=====================================================
   <!--Toptech Contact Area Css Style Three-->
=========================================================---*/
.style-three .add-white-bg {
    padding: 39px 37px 38px;
    border-radius: 10px;
    background-color: #ffffff;
    margin: -313px 0;
    position: relative;
}

.style-three .single-contact-box {
    margin-right: 60px;
}

.style-three .contact-contetn h4 {
    color: var(--third-color);
    font-size: 36px;
    margin: 0 0 35px;
}

.style-three .single-input-box input {
    border: 2px solid rgba(4, 20, 36, 0.1);
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border-radius: 3px;
    outline: 0;
    margin-bottom: 27px;
}

.style-three .single-input-box input::placeholder {
    color: #686868;
    font-weight: 300;
    font-family: "Poppins", serif;
}

.style-three .single-input-box select {
    border: 2px solid rgba(4, 20, 36, 0.1);
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border-radius: 3px;
    outline: 0;
}

.style-three .single-input-box textarea {
    border: 2px solid rgba(4, 20, 36, 0.1);
    width: 100%;
    height: 160px;
    padding: 17px 20px;
    border-radius: 3px;
    outline: 0;
    margin-bottom: 27px;
}

.style-three .single-input-box textarea::placeholder {
    color: #686868;
    font-weight: 300;
    font-family: "Poppins", serif;
}

.style-three .massage-sent-button button {
    border-radius: 3px;
    background-color: var(--fourth-color);
    border: 2px solid var(--fourth-color);
    color: #fff;
    padding: 15px 60px;
    transition: 0.5s;
}

.style-three .massage-sent-button button:hover {
    color: var(--secondary-color);
    background: #fff;
}

.style-three .single-contact-info-box {
    background: url(../images/contact-info-box-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 40px 20px 40px 40px;
    border-radius: 10px;
}

.style-three .info-content {
    margin-bottom: 50px;
}

.style-three .info-content h4 {
    color: #fff;
    font-size: 30px;
    margin: 0;
}

.style-three .contact-info-box {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 48px;
}

.style-three .contact-info-icon i {
    display: inline-block;
    color: #fff;
    border: 2px solid #fff;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    text-align: center;
    line-height: 53px;
}

.style-three .contact-info-content p {
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

.style-three .contact-info-content h4 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    margin: 1px 0 0;
}





.style-one.footer-area.style-three {
    background: url(../images/home-1/footer-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 435px 0 32px;
}

/*---=====================================================
   <!--Toptech Header Area Css-->
=========================================================---*/
.header-area.inner-style {
    position: relative;
    z-index: 1;
}

.inner-style .header-menu {
    text-align: right;
}

.inner-style .header-menu ul {
    display: inline-block;
}

.inner-style .header-menu ul li {
    display: inline-block;
    margin-right: 36px;
}

.inner-style .header-menu ul li a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 36px 0;
    transition: 0.5s;
}

.inner-style .header-menu ul li a:hover {
    color: var(--secondary-color);
}

.inner-style .header-button {
    display: inline-block;
}

.inner-style .header-button a {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 11px 31px;
    border-radius: 8px;
    transition: 0.5s;
}

.inner-style .header-button a:hover {
    background: #fff;
    color: var(--secondary-color);
}


/*---=====================================================
   <!--Toptech Breadcumb Area Css-->
=========================================================---*/
.breadcumb-area {
    /* background: url(../images/about-banner.jpg); */
    /* padding: 60px 0 60px; */
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-top: 0px;
    position: relative;
    height: 420px;
    width: 100%;
}

.breadcumb-content h4 {
    font-size: 50px;
    color: #fff;
    line-height: 65px;
}

.breadcumb-content ul {
    /* border: 2px solid #ffffff47;
    display: inline-block;
    padding: 8px 33px;
    border-radius: 5px; */
    margin-top: 10px;
}

.breadcumb-content ul li {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    font-family: "Poppins", serif;
    margin: 0 4px;
}

.breadcumb-content ul li a {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

/*---=====================================================
   <!--Toptech Images Area Css Inner Style One-->
=========================================================---*/
.inner-style-one.images-area {
    background: url(../images/about-inner/about-images-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0 255px;
    position: relative;
}

.inner-style-one .images-thumb {
    position: absolute;
    right: 0;
    top: -399px;
}



/*---=====================================================
   <!--Toptech About Area Css Inner Style One-->
=========================================================---*/
.inner-style-one.about-area {
    background: url(../images/about-inner/about-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 246px 0 125px;
    margin-top: -154px;
}

.inner-style-one .about-left {
    position: relative;
    z-index: 1;
    left: -68px;
}

.inner-style-one .abour-award-box {
    background: #041424;
    display: flex;
    align-items: center;
    padding: 25px 49px 22px;
    width: 47%;
    border-radius: 5px;
    gap: 23px;
    position: absolute;
    top: 49px;
    right: -30px;
    animation: bounceleft 4s linear infinite;
}

.inner-style-one .about-award-content h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 4px;
    border-bottom: 1px solid #fff;
    padding-bottom: 6px;
}

.inner-style-one .about-award-content p {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    font-family: "Poppins", serif;
    margin: 0;
}

.inner-style-one .about-conuter-box {
    background: var(--secondary-color);
    text-align: center;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    line-height: 81px;
    padding-top: 14px;
    border: 6px solid #fff;
    position: absolute;
    bottom: 107px;
    left: 163px;
}

.inner-style-one .about-counter-content {
    margin-top: -14px;
}

.inner-style-one .about-counter-content span,
.inner-style-one .about-counter-content h4 {
    color: #fff;
    font-size: 45px;
    display: inline-block;
    font-weight: 700;
    /* font-family: "Rajdhani"; */
}

.inner-style-one .about-counter-content p {
    color: #fff;
    margin: -13px 0 0;
    line-height: 0;
}

.inner-style-one .about-shape {
    position: absolute;
    bottom: 11px;
    left: 152px;
    z-index: -1;
    animation: bounce 4s linear infinite;
}

.inner-style-one .abour-right {
    padding-left: 40px;
}

.inner-style-one .about-list-item ul li {
    color: #041424;
    margin: 0;
    line-height: 35px;
}

.inner-style-one .about-list-item ul li i {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 26px;
    position: relative;
    top: 4px;
    margin-right: 12px;
}

.inner-style-one .about-text {
    display: flex;
    align-items: center;
    gap: 27px;
}

.inner-style-one .about-number h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    width: 65px;
    height: 65px;
    text-align: center;
    border-radius: 50%;
    line-height: 65px;
}

.inner-style-one .about-text-content h4 {
    font-size: 24px;
    margin: 0 0 0;
    font-weight: 600;
}

.inner-style-one .about-text-content p {
    font-size: 18px;
    color: #686868;
    margin: 0px 0 0;
}

.inner-style-one .about-company {
    background-color: #eff6fd;
    padding: 23px 29px 27px;
    display: flex;
    border-radius: 7px;
    margin-top: 38px;
}

.inner-style-one .about-company-icon i {
    display: inline-block;
    font-size: 40px;
    color: var(--secondary-color);
    margin-right: 20px;
}

.inner-style-one .about-company-desc p {
    font-size: 18px;
    font-style: italic;
    margin: 0;
}



/*section-title-inner-style*/
.inner-style.section-title.left {
    margin-bottom: 27px;
}

.inner-style.section-title.left h4 {
    font-size: 20px;
    color: var(--fourth-color);
    font-weight: 500;
    margin: 0 0 17px;
}

.inner-style.section-title.left h1 {
    color: var(--third-color);
    font-size: 50px;
    font-weight: 300;
    line-height: 58px;
}

.inner-style.section-title.left p.section-desc {
    margin: 0;
    width: 100%;
    margin-top: 19px;
}

/*section-title-center*/
.inner-style.section-title.center {
    margin-bottom: 27px;
}

.inner-style.section-title.center h4 {
    font-size: 18px;
    color: var(--fourth-color);
    font-weight: 600;
    margin: 0 0 17px;
}

.inner-style.section-title.center h1 {
    font-size: 45px;
    font-weight: 300;
    line-height: 40px;
}

.inner-style.section-title.center p.section-desc {
    margin: 0;
    width: 100%;
    margin-top: 19px;
}

.inner-style.toptech-button a {
    display: inline-block;
    background: var(--fourth-color);
    border: 1px solid var(--secondary-color);
    color: #fff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    margin-top: 38px;
    position: relative;
    transition: 0.5s;
    z-index: 1;
}

.inner-style.toptech-button a:hover {
    color: var(--third-color);
}

.inner-style.toptech-button a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    right: 0;
    top: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
    border-radius: 5px;
}

.inner-style.toptech-button a:hover:before {
    width: 100%;
    left: 0;
}

.inner-style.toptech-button i {
    display: inline-block;
    color: #fff;
    font-size: 24px;
    position: relative;
    top: 4px;
    left: 3px;
    transition: 0.5s;
}

.inner-style.toptech-button a:hover i {
    color: var(--third-color);
}



/*---=====================================================
   <!--Toptech Testimonial Area Css Inner Style One-->
=========================================================---*/
.inner-style-one.testimonial-area {
    background: url(../images/about-inner/testi-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 121px 0 102px;
}

.inner-style-one .testi-desc p {
    font-size: 20px;
    line-height: 34px;
    color: #041424;
    width: 65%;
    margin: auto;
    margin-top: 176px;
}

.inner-style-one .testi-rating {
    margin-top: 20px;
}

.inner-style-one .testi-rating ul li {
    display: inline-block;
}

.inner-style-one .testi-rating ul li i {
    color: #FF9100;
    margin: 0 3px;
}

.inner-style-one .testi-author h4 {
    font-size: 24px;
    margin: 53px 0 5px;
    font-weight: 600;
    position: relative;
}

.inner-style-one .testi-author h4:before {
    position: absolute;
    content: "";
    width: 28px;
    height: 2px;
    left: 0;
    right: 0;
    top: -25px;
    background: #0B59D7;
    margin: auto;
}

.testimonial-area .owl-dots {
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    text-align: center;
}

.inner-style-one.testimonial-area button.owl-dot {
    background: url(../images/about-inner/testi-1.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center;
    width: 100px;
    height: 100px;
    margin: 0 22px;
}

.inner-style-one.testimonial-area button.owl-dot:nth-child(2) {
    background: url(../images/about-inner/testi-2.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center;
}

.inner-style-one.testimonial-area button.owl-dot:nth-child(3) {
    background: url(../images/about-inner/testi-3.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center;
}

.inner-style-one.testimonial-area button.owl-dot:nth-child(4) {
    background: url(../images/about-inner/testi-4.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center;
}

.inner-style-one.testimonial-area button.owl-dot.active {
    transform: scale(1.1);
    border: 6px solid var(--secondary-color);
    border-radius: 50%;
}

.inner-style-one.testimonial-area button.owl-prev {
    display: inline-block;
    position: absolute;
    left: 14px;
    top: 31%;
}

.inner-style-one.testimonial-area button.owl-prev i {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
    background-color: #ffffff;
    line-height: 60px;
    color: var(--secondary-color);
    font-size: 20px;
    transition: 0.5s;
}

.inner-style-one.testimonial-area button.owl-next {
    display: inline-block;
    position: absolute;
    right: 9px;
    top: 31%;
}

.inner-style-one.testimonial-area button.owl-next i {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
    background-color: #ffffff;
    line-height: 60px;
    color: var(--secondary-color);
    font-size: 20px;
    transition: 0.5s;
}

.inner-style-one.testimonial-area button.owl-next i,
.inner-style-one.testimonial-area button.owl-prev i:hover {
    background: var(--secondary-color);
    color: #fff;
}



/*---=====================================================
   <!--Toptech About Area Css Inner Style Two-->
=========================================================---*/

.inner-style-two.about-area {
    background: url(../images/about-inner/about-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding: 125px 0 125px; */
}

.inner-style-two.about-area .inner-style.section-title.left {
    margin-bottom: 41px;
}

.inner-style-two.about-area .inner-style.section-title.left p.section-desc {
    margin: 0;
    width: 91%;
    margin-top: 19px;
}

.inner-style-two .about-left {
    position: relative;
    left: 0px;
}

.inner-style-two .about-video-box {
    width: 310px;
    height: 260px;
    border-radius: 5px;
    background-color: var(--secondary-color);
    border: 8px solid #ffffff;
    text-align: center;
    line-height: 238px;
    position: absolute;
    bottom: 30px;
    right: 1px;
}

.inner-style-two .about-video-box i {
    display: inline-block;
    background: #fff;
    width: 80px;
    height: 80px;
    line-height: 85px;
    border-radius: 50%;
    color: #0D5ADA;
    font-size: 30px;
}

.inner-style-two .abour-right {
    /* position: relative; */
    margin-bottom: 25px;
}

/* .inner-style-two .abour-right:before {
    position: absolute;
    content: "";
    width: 91%;
    height: 6px;
    bottom: -45px;
    left: 0px;
    background: #22222247;
}

.inner-style-two .abour-right:after {
    position: absolute;
    content: "";
    width: 91%;
    height: 2px;
    bottom: -45px;
    left: 0px;
    background: var(--secondary-color);
} */

.inner-style-two .about-single-box {
    display: inline-block;
    width: 48%;
}

.inner-style-two .about-icon {
    float: left;
    padding-right: 12px;
}

.inner-style-two .about-box-content h4 {
    font-weight: 600;
    margin: 0;
    font-size: 22px;
}

.inner-style-two .about-box-content p {
    margin: 12px 0 0;
    padding: 5px 30px 0px 0px;
}


.inner-style-two .about-single-button {
    display: inline-block;
    margin-right: 9px;
}

.inner-style-two .about-single-button a {
    display: inline-block;
    background: #0B59DB;
    color: #fff;
    font-size: 17px;
    padding: 5px 33px;
    border-radius: 30px;
}





/*---=====================================================
   <!--Toptech Service Area Css Inner Style-->
=========================================================---*/
.inner-style.service-area {
    padding: 60px 0 60px;
    background: #F3F7FD;
}

.inner-style.service-area .section-title.center {
    margin-bottom: 90px;
}


.inner-style .single-service-box {
    /* background: #fff; */
    text-align: center;
    transition: .5s;
    padding: 0px 20px 20px;
    filter: drop-shadow(0px 10px 50px rgba(217, 217, 217, 0.5));
    /* background-color: #ffffff; */
    /* border-radius: 15px; */
    margin-bottom: 50px;
}

.inner-style .service-icon {
    width: 85px;
    height: 85px;
    border-radius: 43px;
    background-color: #f3f8fd;
    border: 2px solid #13a3c75c;
    line-height: 80px;
    position: relative;
    top: -17px;
    margin: auto;
}

.inner-style .service-icon:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--fourth-color);
    border-radius: 50%;
    z-index: -1;
    transition: 0.5s;
}

.inner-style .single-service-box:hover .service-icon:before {
    top: 7px;
}

.inner-style .service-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 14px;
}

.inner-style .service-content p {
    color: #686868;
}

.inner-style .service-content a {
    font-size: 15px;
    display: inline-block;
    /* background: #0C59DB; */
    color: #fff;
    /* padding: 7px 15px; */
    /* transition: .5s; */
    /* border-radius: 30px; */
    /* margin-top: 13px; */
    /* border: 1px solid #0C59DB; */
}

.inner-style a:hover .service-content h4{
    color: var(--primary-color);
}

.inner-style .single-service-box:hover .service-content a {
    background: transparent;
    color: #0C59DB;
}

.inner-style .service-content i {
    display: inline-block;
    position: relative;
    top: 2px;
    left: 3px;
}




/*---=====================================================
   <!--Toptech Pricing Area Css Inner Style-->
=========================================================---*/
.inner-style.pricing-area {
    margin-top: 180px;
    /* padding: 0px 0 0px; */
    background: #ffffff;
    position: relative;
}

.inner-style.pricing-area .section-title.left {
    margin-bottom: 57px;
}

.inner-style.pricing-area .section-title.left.inner-style p {
    width: 89%;
    margin: 14px 0 0;
}

.inner-style .single-pricing-box {
    filter: drop-shadow(0px 10px 50px rgba(217, 217, 217, 0.5));
    background-color: #ffffff;
    padding: 3px 3px 3px;
}

.inner-style .pricing-head {
    background: url(../images/about-inner/pricing-head-bg.png);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 50px 60px 50px;
}

.inner-style .pricing-head-content h1 {
    font-size: 32px;
    color: #041424;
    margin: 0 0 4px;
}

.inner-style .pricing-body {
    padding: 27px 53px 34px;
}

.inner-style .pricing-rate h1 {
    font-size: 55px;
    color: #041424;
    margin: 0 0 16px;
}

.inner-style .pricing-rate del {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    /* font-family: "Rajdhani"; */
}

.inner-style .pricing-list ul li {
    line-height: 32px;
}

.inner-style .pricing-button {
    text-align: center;
}

.inner-style .pricing-button a {
    display: inline-block;
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid rgba(4, 20, 36, 0.1);
    padding: 15px 61px;
    color: #131313;
    transition: 0.5s;
}

.inner-style .pricing-button a:hover {
    background: #115BD9;
    color: #fff;
}

.inner-style .tab-button {
    float: right;
    margin-top: 36px;
}

.inner-style .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: #021533;
    border: transparent;
}

.inner-style .nav-link {
    display: block;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    background: #0F5AD9;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    margin-left: 10px;
}

.inner-style .pricing-textar-text {
    margin-top: 72px;
}

.inner-style .pricing-textar-text p {
    font-size: 17px;
    color: #686868;
    font-weight: 500;
    /* font-family: "Rajdhani"; */
    text-align: center;
    margin: 0;
    position: relative;
}

.inner-style .pricing-textar-text p:before {
    position: absolute;
    content: "";
    top: 12px;
    left: 0;
    width: 390px;
    height: 1px;
    background-image: linear-gradient(90deg, #0b59db 0%, #f3f7fd 100%);
}

.inner-style .pricing-textar-text p:after {
    position: absolute;
    content: "";
    top: 12px;
    right: 0;
    width: 390px;
    height: 1px;
    background-image: linear-gradient(90deg, #f3f7fd 0%, #0b59db 100%);
}

/*---=====================================================
   <!--Toptech faqs Area Css Inner Style-->
=========================================================---*/

.inner-style.faqs-area {
    padding: 124px 0 101px;
    background: #F3F8FC;
}

.inner-style.faqs-area .section-title.left {
    margin-bottom: 40px;
}

.inner-style.faqs-area .section-title.left p {
    margin: 25px 78px 0 0;
}

.inner-style .faqs-thumb {
    display: inline-block;
    margin: 0 4px 0;
}

.inner-style .faqs-icon-box {
    display: flex;
    align-items: center;
    gap: 23px;
    margin: 33px 0 0;
}

.inner-style .faqs-icon-content p {
    margin: 0;
    width: 83%;
}

.inner-style .faq-singular .faq-question {
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 16px 10px 15px 23px;
    font-weight: 700;
    font-size: 18px;
    border-radius: 5px;
    z-index: 2;
    transition: 0.5s;
    background: #fff;
    font-family: "Poppins", serif;
}

.inner-style .faq-singular {
    position: relative;
    background: #fff;
    margin-bottom: 20px;
}

.inner-style .faq-singular.active .faq-question {
    border-bottom: 1px solid #2222;
    background: #0B59DB !important;
    color: #fff;
}

.inner-style .faq-singular.active .faq-question:before {
    content: "-";
    font-size: 30px;
    color: #fff;
}

.inner-style .faq-singular.active .faq-question img {
    filter: brightness(0) invert(1);
}


/*---     =====================================================
              <!--Toptech Strat Project Details Area Css-->
        =========================================================   ---*/

.project-details-area {
    padding: 123px 0 93px;
}

.project-details-content {
    margin-top: 0px;
}

.project-details-thumb img {
    width: 100%;
}

.project-details-content h4 {
    font-size: 36px;
    margin-bottom: 17px;
}

p.project-details-desc {
    font-size: 17px;
    margin-bottom: 27px;
    width: 96%;
}

.project-details-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 54px;
}

.project-details-item-images img {
    width: 100%;
}

.project-details-list-item h4 {
    color: var(--third-color);
    font-size: 28px;
}

.project-details-list-item ul li i {
    display: inline-block;
    color: var(--fourth-color);
    font-size: 19px;
    margin-right: 11px;
    position: relative;
    top: 2px;
}

.project-details-list-item ul li {
    display: flex;
        font-size: 16px;
        line-height: 30px;
}

a.project-details-text {
    display: inline-block;
    font-size: 28px;
    line-height: 38px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 19px;
    /* font-family: "Rajdhani"; */
}

.project-details-right {
    background: #F6F6EE;
    padding: 29px 41px 30px;
    border-radius: 5px;
    margin-top: 50px;
}

.project-details-info {
    border-bottom: 1px solid #86868152;
    padding-bottom: 10px;
    padding-top: 9px;
}

.project-details-info:last-child {
    border-bottom: transparent;
}

.project-details-info p {
    margin-bottom: 0;
}

.project-details-info h6 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 6px;
}



/*---=====================================================
   <!--Toptech Project Area Css inner style-->
=========================================================---*/
.inner-style.project-area {
    background: #f3f8fc;
    padding: 119px 0 95px;
}

.inner-style.project-area .section-title.center {
    margin-bottom: 56px;
}

.inner-style .single-project-box {
    margin-bottom: 28px;
}

.inner-style .project-thumb img {
    width: 100%;
}

.inner-style .project-content {
    background: #fff;
    padding: 30px 34px 28px;
    width: 88%;
    border-left: 5px solid var(--secondary-color);
    position: relative;
    margin-top: -38px;
    transition: 0.5s;
    border-radius: 3px;
    height: 117px;
}

.inner-style .single-project-box:hover .project-content {
    background: #001819;
    height: 159px;
    margin-top: -83px;
}

.inner-style .project-content h4 {
    font-size: 18px;
    margin: 0 0 12px;
    transition: 0.5s;
    color: var(--secondary-color);
    font-weight: 600;
    /* font-family: "Rajdhani"; */
}

.inner-style .single-project-box:hover .project-content h4 {
    color: var(--secondary-color);
}

.inner-style .project-content a {
    display: inline-block;
    color: #001819;
    font-size: 24px;
    font-weight: 700;
    transition: 0.5s;
    /* font-family: "Rajdhani"; */
}

.inner-style .project-content a:hover {
    color: var(--secondary-color) !important;
}

.inner-style .single-project-box:hover .project-content a {
    color: #fff;
}

.inner-style a.project-button {
    font-size: 17px !important;
    display: inherit;
    color: #fff;
    font-weight: 500;
    margin-top: 9px;
    display: none;
    transition: 0.5s;
}

.inner-style a.project-button:hover {
    color: var(--secondary-color) !important;
}

.inner-style .single-project-box:hover a.project-button {
    display: block;
}

.inner-style a.project-button i {
    display: inline-block;
    color: #fff;
    font-size: 22px;
    position: relative;
    top: 3px;
    transition: 0.5s;
}

.inner-style a.project-button:hover i {
    color: var(--secondary-color) !important;
}

.inner-style .project-shape {
    position: absolute;
    right: 14px;
    bottom: 22px;
    display: none;
    transition: 0.5s;
}

.inner-style .single-project-box:hover .project-shape {
    display: block;
}


/*sidber contact*/

.widget-sidber-contact-box {
    background: url(../images/inner-images/sidber-contact.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    padding: 48px 43px 48px;
}

p.widget-sidber-contact-text {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    padding: 25px 0 13px;
}

h3.widget-sidber-contact-number {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 14px;
}

span.widget-sidber-contact-gmail {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

span.widget-sidber-contact-gmail i {
    display: inline-block;
    font-size: 17px;
    color: var(--secondary-color);
    position: relative;
    top: 2px;
    margin-right: 6px;
}

.widget-sidber-contact-btn a {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    text-decoration: none;
    background: var(--secondary-color);
    padding: 16px 98px 15px;
    border-radius: 5px;
    margin-top: 55px;
    transition: 0.5s;
    border: 2px solid var(--secondary-color);
}

.widget-sidber-contact-btn a:hover {
    background: transparent;
    color: var(--secondary-color);
}

.widget-sidber-contact-btn a i {
    display: inline-block;
    font-size: 18px;
    position: relative;
    top: 2px;
    margin-left: 3px;
}


.style-one.inner.team-area {
    background: url(../images/team/team-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 119px 0 123px;
}

.style-one.inner.team-area .toptech-button.style-one {
    text-align: right;
    margin-top: 40px;
}


/*---=====================================================
   <!--Toptech Services Details Area Css-->
=========================================================---*/

.services-details-area {
    padding: 122px 0 121px;
}

.services-details-thumb img {
    border-radius: 20px;
    width: 100%;
}

.services-details-content {
    padding-top: 18px;
}

h4.services-details-title {
    color: var(--fourth-color);
    font-size: 36px;
    margin-bottom: 10px;
}

p.services-details-desc {
    font-size: 16px;
    margin-top: 24px;
}

.service-details-icon-box {
    display: flex;
    background: #F6F6EE;
    padding: 32px 27px 18px;
    gap: 28px;
    margin-top: 27px;
}

.service-details-box-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 11px;
}

.services-details-text {
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    padding: 32px 39px;
    gap: 65px;
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.service-details-text-icon {
    position: relative;
}

.service-details-text-icon:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 55px;
    right: -29px;
    top: 0px;
    background: #f6f6ee61;
}

.service-details-text-content p {
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
    width: 90%;
    margin: 0;
}

.services-details-area .single-benifits-box {
    margin-top: 22px;
}

.services-details-area .benifits-thumb img {
    border-radius: 20px;
    width: 100%;
}

.services-details-area .benifits-content {
    border-radius: 5px;
    filter: drop-shadow(0px 5px 30px rgba(117, 117, 117, 0.1));
    background-color: #ffffff;
    padding: 30px 31px 23px;
    width: 92%;
    margin: auto;
    margin-top: -28px;
    margin-bottom: 20px;
}

.services-details-area .benifits-content h4 {
    font-size: 24px;
    margin: 0;
    margin-bottom: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.services-details-area .benifits-content ul li {
    display: flex;
    line-height: 32px;
}

.services-details-area .benifits-content ul li i {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 10px;
    position: relative;
    top: 7px;
    margin-right: 10px;
}

/*widget-sidber css*/

.widget-sidber {
    border-radius: 5px;
    background-color: #f7f6ee;
    padding: 32px 41px 29px;
    margin-bottom: 27px;
}

.widget-sidber-content h4 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 46px;
    position: relative;
}

.widget-sidber-content h4:before {
    position: absolute;
    content: "";
    width: 29px;
    height: 2px;
    left: 0;
    bottom: -8px;
    background: var(--secondary-color);
}

.widget-category ul li img {
    margin-right: 12px;
    transition: 0.5s;
}

.widget-category ul li a:hover img {
    filter: brightness(0) invert(1);
}

.widget-category ul li a {
    background: #ffff;
    padding: 14px 26px;
    width: 100%;
    display: inline-block;
    margin-bottom: 14px;
    color: #001819;
    font-weight: 500;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.widget-category ul li a:hover {
    color: #fff;
}

.widget-category ul li a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--secondary-color);
    z-index: -1;
    border-radius: 5px;
    transition: 0.5s;
}

.widget-category ul li a:hover:before {
    width: 100%;
    left: 0;
}

.widget-category ul li i {
    color: black;
    display: inline-block;
    float: right;
    font-size: 17px;
    opacity: 0;
    transition: 0.5s;
}

.widget-category ul li a:hover i {
    opacity: 1;
    color: #fff;
}

.widget-sidber-download-button a {
    display: inline-block;
    background: #00181A;
    width: 100%;
    color: #fff;
    padding: 15px 23px;
    border-radius: 5px;
    margin-bottom: 18px;
}

.widget-sidber-download-button a.active {
    background: var(--secondary-color);
}

.widget-sidber-download-button i {
    color: var(--secondary-color);
    display: inline-block;
    font-size: 22px;
    margin-right: 9px;
    position: relative;
    top: 3px;
}

.widget-sidber-download-button a.active i {
    color: #fff;
}


.widget-sidber-download-button span i {
    float: right;
    display: inline-block;
    font-size: 16px;
}

.widget-sidber-download-button a.active span i {
    color: #fff;
}

/*---=====================================================
   <!--Toptech Blog Details Area Css-->
=========================================================---*/
.blog-details-area {
    padding: 119px 0 119px;
}

.blog-details-thumb {
    overflow: hidden;
}

.blog-details-thumb img {
    border-radius: 10px;
    width: 100%;
    transition: 0.5s;
}

.blog-details-thumb img:hover {
    border-radius: 10px;
    transform: scale(1.2) skew(-10deg);
}

.blog-details-content {
    margin-top: 20px;
    margin-bottom: 50px;
    padding: 30px 30px 30px;
    border: 1px solid #2222;
    border-radius: 20px;
}

.blog-details-area .meta-blog span {
    display: inline-block;
    margin-right: 28px;
    font-weight: 500;
}

.blog-details-area span.mate-text {
    padding-left: 36px;
    position: relative;
}

.blog-details-area span.mate-text:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    left: 5px;
    top: 11px;
    background: var(--secondary-color);
}

.blog-details-area .meta-blog i {
    display: inline-block;
    color: var(--secondary-color);
    padding-right: 9px;
}

.blog-details-area .meta-blog img {
    margin-right: 8px;
    position: relative;
    top: -1px;
}

h4.blog-details-title {
    font-size: 32px;
    margin: 12px 0 19px;
}

p.blog-details-desc {
    font-size: 16px;
    margin-bottom: 25px;
}

.blog-details-author-talk {
    display: flex;
    gap: 26px;
    background: #F7F6EE;
    padding: 41px 51px 40px;
    margin-top: 48px;
}

.blog-details-quote img {
    position: relative;
    top: 8px;
}

.blog-details-author-title p {
    font-size: 20px;
    font-style: italic;
    line-height: 30px;
    color: #001819;
}

.blog-details-quote img {
    position: relative;
    top: 8px;
    color: #001819;
}

.blog-details-author-title span {
    margin-left: 58px;
    display: inline-block;
    color: #001819;
    position: relative;
}

.blog-details-author-title span:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: -58px;
    top: 12px;
    background: var(--secondary-color);
}

h3.blog-details-title {
    color: var(--fourth-color) !important;!i;!; !important; !important; !important;
    font-size: 26px !important;
    margin: 20px 0 15px;
}

p.blog-details-desc.two {
    width: 95%;
}

.blog-details-list-item {
    margin-bottom: 0px;
}

.blog-details-list-item ul li {
    margin-bottom: 10px;
    font-size: 17px;
}

.blog-details-list-item ul li i {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 18px;
    margin-right: 16px;
}

h3.blog-details-title.two {
    font-size: 28px;
    margin: 38px 0 16px;
}

p.blog-details-desc.three {
    width: 100%;
}

.blog-details-socila-box {
    border: 1px solid #2222;
    border-top: transparent;
    padding: 19px 35px 18px;
    border-radius: 0 0 5px 5px;
}

.blog-details-category span a {
    display: inline-block;
    background: #F6F6EE;
    padding: 6px 16px;
    font-weight: 500;
    color: #001819;
    border-radius: 3px;
    margin-right: 7px;
    transition: 0.5s;
}

.blog-details-category span a:hover {
    background: var(--secondary-color);
    color: #fff;
}

.blog-details-category span a.active-class {
    background: var(--secondary-color);
    color: #fff;
}

.blog-details-social-icon {
    text-align: right;
}

.blog-details-social-icon ul li {
    display: inline-block;
}

.blog-details-social-icon ul li i {
    display: inline-block;
    background: #1974E9;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-size: 13px;
    margin-left: 5px;
}

.blog-details-social-icon ul li:nth-child(2) i {
    background: #00AAE8;
}

.blog-details-social-icon ul li:nth-child(3) i {
    background: #016EAF;
}

.blog-details-social-icon ul li:nth-child(4) i {
    background: #B7071C;
}


/* Comment CSS */

.single-comment-area {
    background: #F6F6EE;
    padding: 49px 41px 56px;
    margin-top: 61px;
    border-radius: 5px;
}

.blog-details-comment-title h4 {
    font-size: 28px;
    margin: 0 0 28px;
}

.blog-details-comment {
    margin-bottom: 19px;
    position: relative;
    border: 1px solid #22222214;
    padding: 29px 29px 25px;
}

.blog-details-comment.style-two {
    margin-left: 105px;
}

.blog-details-comment-thumb {
    float: left;
    margin-right: 30px;
}

.blog-details-comment-content {
    overflow: hidden;
}

.blog-details-comment-content h2 {
    font-size: 20px;
    margin-top: 0;
    display: inline-block;
    font-weight: 700;
    margin-right: 30px;
}

.blog-details-comment-content p {
    font-size: 15px;
    margin: 13px 0 0;
}

.blog-details-comment-reply {
    position: absolute;
    right: 22px;
    top: 21px;
}

.blog-details-comment-reply a {
    background: var(--secondary-color);
    padding: 3px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: 2px;
    display: inline-block;
}

.blog-details-comment.reply {
    margin-left: 70px;
    padding-top: 35px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.blog-details-contact-title h4 {
    font-size: 23px;
    font-weight: 600;
    padding-bottom: 31px;
}

.blog-details-area .contact-input-box input {
    background: #fff;
    border: transparent;
    width: 100%;
    height: 60px;
    padding: 22px;
    outline: 0;
    margin-bottom: 11px;
}

.blog-details-area .contact-input-box textarea {
    background: #fff;
    border: transparent;
    width: 100%;
    height: 170px;
    padding: 12px 22px 0;
    outline: 0;
    margin-top: 11px;
    margin-bottom: 20px;
}

.input-check-box span {
    font-size: 15px;
    margin-left: 7px;
}

.blog-details-submi-button button {
    background: var(--secondary-color);
    color: #fff;
    text-transform: uppercase;
    border: transparent;
    padding: 12px 26px;
    font-size: 15px;
    margin-top: 34px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    font-weight: 500;
}

.blog-details-submi-button button:hover {
    color: var(--secondary-color);
}

.blog-details-submi-button button:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #fff;
    transition: 0.5s;
    z-index: -1;
    border-radius: 5px;
}

.blog-details-submi-button button:hover:before {
    width: 100%;
    left: 0;
}

/*sidber Css*/

.widget_search form {
    position: relative;
}

.widget_search input {
    border-radius: 4px;
    padding-left: 20px !important;
    height: 60px;
    width: 100% !important;
    position: relative;
    color: #012549;
    outline: 0 !important;
    border: transparent !important;
}


button.icons {
    border: 0;
    font-size: 16px;
    position: absolute;
    right: 14px;
    top: 20px;
    color: #1e1e1e;
    background: transparent;
    opacity: 0.7;
}

.sidber-widget-recent-post {
    margin-bottom: 27px;
    display: flex;
    align-items: center;
    gap: 19px;
}

.recent-widget-content a {
    transition: 0.5s;
    width: 95%;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    color: #041424;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
}

.sidber-widget-recent-post:hover .recent-widget-content a {
    color: var(--secondary-color) !important;
}

.recent-widget-content p {
    font-size: 14px;
    margin: 0;
    color: var(--secondary-color);
}

.widget-catefories-tags a {
    display: inline-block;
    color: #101010;
    font-weight: 500;
    background: #fff;
    padding: 6px 19px;
    margin: 6px 3px;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

.widget-catefories-tags a:hover {
    color: #fff;
}

.widget-catefories-tags a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: var(--secondary-color);
    transition: 0.5s;
    z-index: -1;
}

.widget-catefories-tags a:hover:before {
    width: 100%;
    left: 0;
}

/*---=====================================================
   <!--Toptech Blog Grid Area Css-->
=========================================================---*/
.blog-grid-area {
    padding: 120px 0 100px;
}

.blog-grid-area .single-blog-box {
    border-radius: 5px;
    background-color: #f3f8fd;
    padding: 20px 21px 31px;
    position: relative;
    margin-bottom: 21px;
}

.blog-grid-area .blog-thumb img {
    width: 100%;
}

.blog-grid-area .blog-content {
    padding: 25px 22px 3px;
}

.blog-grid-area .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 55px;
    position: relative;
}

.blog-grid-area .blog-meta:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -26px;
    background: #fff;
}

.blog-grid-area .blog-meta:after {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    left: 0;
    bottom: -26px;
    background: var(--secondary-color);
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
}

@-webkit-keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(298px);
        transform: translateX(298px);
    }
}

.blog-grid-area .blog-meta span {
    font-size: 17px;
    line-height: 32px;
    color: var(--secondary-color);
    font-weight: 500;
    /* font-family: "Rajdhani"; */
}

.blog-grid-area .blog-title a {
    font-size: 24px;
    line-height: 32px;
    color: var(--secondary-color);
    font-weight: 500;
    /* font-family: "Rajdhani"; */
}

.blog-grid-area .blog-title a:hover {
    color: var(--secondary-color);
}

.blog-grid-area .blog-title p {
    margin: 12px 0 0;
}

.blog-grid-area .blog-category a {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", serif;
    background: var(--secondary-color);
    padding: 7px 38px;
    position: absolute;
    top: 20px;
    left: 21px;
    border-radius: 5px 0 0 0;
    overflow: hidden;
}

.blog-grid-area .blog-category a:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    right: -15px;
    top: 6px;
    background: #001739;
    transform: rotate(45deg);
}

.blog-grid-area .blog-button i {
    background: #0D5ADE;
    display: inline-block;
    color: #fff;
    width: 46px;
    height: 46px;
    text-align: center;
    line-height: 43px;
    border-radius: 50%;
    font-size: 14px;
    transform: rotate(-50deg);
    border: 2px solid #fff;
    position: absolute;
    top: 192px;
    right: 41px;
    opacity: 0;
    transition: 0.5s;
}

.blog-grid-area .single-blog-box:hover .blog-button i {
    opacity: 1;
}


.process-area.style-three.inner {
    padding: 0 0 227px;
}

/*---=====================================================
   <!--Toptech Careers Area Css-->
=========================================================---*/
.inner-style.careers-area {
    padding: 0px 0 0px;
    background: #F5F8FD;
    border-radius: 10px;
    border: 1px solid #E7E7E7;
}

.inner-style.careers-area .row.title {
    margin-bottom: 84px;
}

.inner-style .careers-content h4 {
    color: #041424;
    font-size: 24px;
    margin: 0;
    font-weight: 600;
}

.inner-style .careers-content a {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    /* font-family: "Rajdhani"; */
}


.inner-style .careers-desc p {
    width: 67%;
    float: right;
    margin: 0;
}

.inner-style .careers-desc a {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    /* font-family: "Rajdhani"; */
}

.inner-style .job-item-content span {
    border-radius: 15px;
    background-color: var(--secondary-color);
    display: inline-block;
    color: #fff;
    padding: 2px 25px;
}

.inner-style span.location {
    background: transparent !important;
    font-size: 14px;
    color: #686868 !important;
    font-weight: 400;
    font-family: "Poppins", serif;
    padding: 0 !important;
    margin-left: 18px;
}

.inner-style .job-item-content h4 {
    font-size: 22px;
    color: var(--fourth-color);
    font-weight: 500;
    margin: 0px 0px 0px 20px;
}

.inner-style .job-desc p {
    margin: 0 0 8px;
    width: 100%;
}

.inner-style .job-apply-button {
    text-align: right;
}

.inner-style .job-apply-button a {
    display: inline-block;
    border: 2px solid #2222;
    padding: 14px 58px;
    border-radius: 30px;
    color: #041424;
    font-weight: 500;
    transition: 0.5s;
}

.inner-style .job-apply-button a:hover {
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: #fff;
}

.inner-style.careers-area .row.add-border {
    /* border: 1px solid #E7E7E7; */
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 10px;
}

.inner-style .job-requirements-content h4 {
    color: #041424;
    font-weight: 600;
    margin: 27px 0 29px;
}

.inner-style .job-requirements-content p {
    margin: 0 0 54px;
}

.inner-style .single-feature-box {
    text-align: center;
    filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
    background: #fff;
    padding: 56px 42px 33px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.inner-style .single-feature-box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    background: url(../images/home-2/feature-box-shape.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
    transition: 0.5s;
}

.inner-style .single-feature-box:hover:before {
    height: 100%;
}

.inner-style .feature-icon {
    position: relative;
    z-index: 1;
}

.inner-style .feature-icon:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 201%;
    left: 0;
    right: 0;
    top: -19px;
    background: url(../images/home-2/feature-shape-1.png);
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.5s;
    z-index: -1;
}

.inner-style .single-feature-box:hover .feature-icon:before {
    background: url(../images/home-2/feature-shape-2.png);
    background-repeat: no-repeat;
    background-position: center;
}

.inner-style .feature-content h4 {
    transition: .5s;
    padding: 35px 0 13px 0;
    font-size: 26px;
    color: #041424;
    font-weight: 700;
    /* font-family: "Rajdhani"; */
    text-align: center;
}

.inner-style .single-feature-box:hover .feature-content h4 {
    color: #fff;
}

.inner-style .feature-content p {
    margin: 0 0 20px;
    transition: 0.5s;
}

.inner-style .single-feature-box:hover .feature-content p {
    color: #fff;
}

.inner-style .feature-content a {
    padding: 0 0 0 12px;
    color: #fff;
    display: inline-block;
    margin-top: 0;
    position: relative;
    z-index: 1;
    transition: .5s;
    font-size: 16px;
    font-weight: 400;
}

.inner-style .single-feature-box:hover .feature-content a {
    color: #fff;
}

.inner-style .feature-content a:after {
    position: absolute;
    content: "";
    z-index: 1;
    top: 12px;
    left: 35px;
    width: 30px;
    height: 2px;
    background: #0b59db !important;
    transition: .5s;
}

.inner-style .single-feature-box:hover .feature-content a:after {
    left: -24px;
    background: #fff !important;
}



/*---=====================================================
   <!--Toptech Contact Area Css-->
=========================================================---*/
.contact-area.style-three.inner {
    /* padding: 0px 0 0px; */
}

.style-three.inner .add-white-bg {
    margin: 0 0;
    filter: drop-shadow(0px 10px 50px rgba(217, 217, 217, 0.5));
}

.google-map iframe {
    width: 100%;
    height: 600px;
}


/*---=====================================================
   <!--Toptech Location Area Css-->
=========================================================---*/
.location-area.inner-style {
    background: #f3f8fd;
    padding: 225px 0 0px;
}

.inner-style .single-location-box {
    text-align: center;
    border-radius: 5px;
    filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
    background-color: #ffffff;
    padding: 93px 0 59px;
    position: relative;
    margin-bottom: 126px;
}

.inner-style .location-thumb {
    position: absolute;
    top: -103px;
    left: 0;
    right: 0;
    overflow: hidden;
}

.inner-style .location-thumb img {
    animation: bns1 5s linear infinite;
}

@keyframes bns1 {
    50% {
        transform: rotate(-5deg);
    }

    80% {
        transform: rotate(5deg);
    }
}

.inner-style .location-content p {
    color: #686868;
    margin: 0 0 35px;
}

.inner-style .location-content h4 {
    color: #041424;
    font-size: 26px;
    font-weight: 600;
    margin: 30px 0 13px;
}

.location-icon {
    position: relative;
    display: inline-block;
}

.location-icon:before {
    position: absolute;
    content: "";
    left: -150px;
    top: 22px;
    width: 135px;
    height: 1px;
    background-image: linear-gradient(90deg, #0b59db 0%, #f3f7fd 100%);
}

.location-icon:after {
    position: absolute;
    content: "";
    right: -150px;
    top: 22px;
    width: 135px;
    height: 1px;
    background-image: linear-gradient(90deg, #f3f7fd 0%, #0b59db 100%);
}

.inner-style .location-button a {
    border: 1.2px solid #e7e7e8;
    display: inline-block;
    padding: 15px 105px;
    border-radius: 30px;
    text-transform: uppercase;
    color: #041424;
    font-weight: 500;
    margin-top: 49px;
    transition: 0.5s;
}

.inner-style .location-button a:hover {
    background: var(--secondary-color);
    color: #fff;
}

/*---=====================================================
   <!--Toptech Mission Area Css-->
=========================================================---*/
.mission-area.inner-style {
    padding: 123px 0 123px;
}

.feature-area.style-three.inner {
    padding-bottom: 93px;
}

.inner-style .mission-box {
    background: #f3f8fd;
    padding: 107px 55px 59px 97px;
    /* margin-left: -24px; */
}

.inner-style .mission-box.two {
    margin-left: 0;
}

.mission-thumb.two {
    position: relative;
    left: -35px;
}

.inner-style .mission-thumb img {
    width: 100%;
}

.inner-style .mission-content h4 {
    font-size: 42px;
    margin: 0 0 46px;
}

.inner-style .sigle-icon-desc {
    overflow: hidden;
}

.inner-style .single-icon-box {
    margin-bottom: 25px;
}

.inner-style .single-icon-thumb i {
    width: 45px;
    height: 45px;
    border-radius: 23px;
    filter: drop-shadow(0px 10px 10px rgba(207, 218, 235, 0.2));
    background-color: #ffffff;
    display: inline-block;
    float: left;
    text-align: center;
    line-height: 45px;
    font-size: 25px;
    color: #041424;
    margin-right: 16px;
}

.inner-style .mission-button a {
    display: inline-block;
    border: 2px solid #e7e7e8;
    border-radius: 30px;
    padding: 13px 44px;
    color: #041424;
    font-weight: 500;
    margin-top: 23px;
    transition: 0.5s;
}

.inner-style .mission-button a:hover {
    background: var(--secondary-color);
    color: #fff;
}

/*---=====================================================
   <!--Toptech Choose us Area Css-->
=========================================================---*/
.choose-us-area.inner-style {
    padding: 124px 0 100px;
    background: url(../images/inner-images/choose-us-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.choose-us-area.inner-style .row.add-marging {
    margin-top: 106px;
    border-top: 1px solid var(--secondary-color);
    padding-top: 103px;
}

.choose-us-area.inner-style .style-two.section-title {
    margin-bottom: 28px;
}

.inner-style .single-choose-us-item ul li {
    font-size: 18px;
    color: #041424;
    font-weight: 400;
    font-family: "Poppins", serif;
    margin-bottom: 19px;
    margin-left: 27px;
    position: relative;
}

.inner-style .single-choose-us-item ul li:before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    left: -20px;
    top: 9px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.inner-style .choose-us-thumb img {
    position: relative;
    left: 113px;
}

.inner-style .single-choose-us-box {
    text-align: center;
    padding: 0 3px 0;
    margin-bottom: 20px;
}

.inner-style .choose-us-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 29px 0 18px;
}

/*---=====================================================
   <!--Toptech Team Details Area Css-->
=========================================================---*/
.team-details-area {
    padding: 0px 0 0px;
    background: url(../images/team/team-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.team-details-area .team-member-title h4 {
    font-size: 36px;
    margin: 0;
}

.team-details-area p.desc {
    margin-top: 25px;
    margin-bottom: 15px;
}

.team-details-area .contact-info-box {
    background: #fff;
    padding: 5px 0px 0px;
    border-radius: 5px;
    display: flex;
    justify-content: stretch;
    align-items: center;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    gap: 11px;
}

.team-details-area .contact-info-icon i {
    display: inline-block;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 56px;
    font-size: 22px;
    transition: 0.5s;
}

.team-details-area .contact-info-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 0 0 11px 0;
    transition: 0.5s;
}

.team-details-area .contact-info-content p {
    font-size: 26px;
    color: #0c59d7;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    margin: 0;
    padding: 0;
    transition: 0.5s;
}

.team-details-area .team-details-social-icon ul li {
    font-size: 22px;
    color: #041424;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    margin-top: 49px;
    display: inline-block;
}

.team-details-area .team-details-social-icon ul li i {
    background: #e5e7e9;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    color: #111;
    font-size: 14px;
    margin-left: 7px;
    transition: 0.5s;
}

.team-details-area .team-details-social-icon ul li i:hover {
    background: #0C59DB;
    color: #fff;
}

.team-details-area .team-details-location-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 46px;
}

.team-details-area .team-details-location-box .contact-info-content p {
    font-size: 17px;
    color: #0c59d7;
    font-weight: 600;
    margin: 0;
    padding: 0;
    transition: 0.5s;
}

.team-details-area .team-details-skills {
    margin-top: 115px;
}

.team-details-area .team-details-skills h4 {
    font-size: 36px;
    margin: 0 0 49px;
}

.team-details-area .skill {
    margin-bottom: 38px;
    position: relative;
    overflow: hidden;
}


/*** 
====================================================================
   Toptech Search Popup css
====================================================================
***/


.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.search-popup {
    width: 100%;
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--secondary-color);
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #fff;
    border-top: 3px solid #fff;
    border-right: 3px solid #062462;
    border-left: 3px solid #062462;
    -webkit-transition: all 500ms ease;
    height: 70px;
    line-height: 70px;
    text-align: center;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;

    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: var(--secondary-color);
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    border: none;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-box-btn {
    display: inline-block;
    padding-left: 22px;
}

.search-box-btn i {
    display: inline-block;
    color: #fff;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    transition: .5s;
}

.upp.search-box-btn i {
    color: #9E9FA1;
}

.search-box-btn.search-box-outer span i {
    font-size: 20px;
    display: inline-block;
    color: #fff;
    padding-left: 17px;
    position: relative;
    z-index: 1;
}

.upp.search-box-btn.search-box-outer span i {
    color: #9E9FA1;
}

.search-box-btn.search-box-outer span i:after {
    position: absolute;
    content: "0";
    right: -10px;
    top: -4px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    font-size: 12px;
}

.flaticon-multiply:before {
    content: inherit;
}

button.close-search i {
    font-size: 25px;
    color: #fff;
    display: inline-block;
}


span.flaticon-multiply i {
    display: inline-block;
    color: var(--secondary-color);
}






/*------Toptech Scroll Up Css------------*/
.prgoress_indicator {
    position: fixed;
    right: 26px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(22, 93, 245, 0.2);
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: var(--secondary-color);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    font-weight: 900;
    opacity: 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear !important;
}

.prgoress_indicator:hover ::after {
    color: var(--secondary-color);
}

.prgoress_indicator:hover ::before {
    opacity: 1;
}

.prgoress_indicator svg path {
    fill: none;
}

.prgoress_indicator svg.progress-circle path {
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear !important;
}






/*-----toptech home-4 css---*/






/*---=====================================================
   <!--Toptech Header Area Css Style foure-->
=========================================================---*/

.style-foure.sticky {
    background: #fff !important;
}

.header-area.style-foure .header-menu {
    margin-right: 50px;
}

.header-area.style-foure .header-menu ul li {
    margin-right: 25px;
}

.header-area.style-foure {
    margin: 0;
    /* padding: 13px 0px; */
    background-color: #fff;
    position: relative;
    z-index: 999;
}

.header-area.style-foure .header-menu ul {
    margin-right: 30px;
}

.header-area.style-foure .header-menu ul li a {
    display: inline-block;
    padding: 20px 0;
    font-size: 18px;
    color: #000;
    font-weight: 400;
    font-family: "Poppins", serif;
    text-transform: none;
    margin-right: 10px;
}

.header-area.style-foure .header-menu ul li a i {
    display: inline-block;
    color: #000;
    font-size: 13px;
    margin-left: -5px;
}

.header-area.style-foure .header-button a {
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins", serif;
    border-radius: 30px;
    padding: 15px 35px;
    position: relative;
    z-index: 1;
}

.header-area.style-foure .header-button a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0;
    z-index: -1;
    transition: .5s;
    border-radius: 30px;

}

.header-area.style-foure h3.social-title {
    margin: 0;
    font-size: 18px;
    line-height: 48px;
    color: #041424;
    font-weight: 500;
    font-family: "Poppins", serif;
    margin-right: 20px;
}

.header-area.style-foure .social-media {
    float: right;
    margin-right: -157px;
}

.header-area.style-foure ul.social-icon li {
    display: inline-block;
}

.header-area.style-foure ul.social-icon li a i {
    display: inline-block;
    font-size: 14px;
    margin-right: 16px;
    transition: .5s;
}

.header-area.style-foure ul.social-icon li a i:hover {
    color: var(--secondary-color);
}


.header-area.style-foure .header-button a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}


.header-area.style-foure .header-menu ul li:hover .sub-menu {
    opacity: 1;
    top: 113%;
    visibility: visible;
}

/*---=====================================================
   <!--Toptech Hero Area Css Style foure-->
=========================================================---*/
.hero-1 {
    background: url(../images/home-slider-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 840px;
}

.hero-2 {
    background: url(../images/home-slider-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 840px;
}

.hero-3 {
    background: url(../images/home-slider-3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 840px;
}

.hero-4 {
    background: url(../images/home-slider-4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 840px;
}

.hero-5 {
    background: url(../images/home-slider-5.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 840px;
}

.hero-area.style-foure .hero-content {
    text-align: center;
}

.style-foure .hero-content h4 {
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 18px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.style-foure .hero-content h4::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../images/home-4/title-shape.png);
    background-repeat: no-repeat;
    left: -11%;
}

.style-foure .hero-content h4::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../images/home-4/title-shape.png);
    background-repeat: no-repeat;
    right: -103%;
}

.style-foure .hero-content h1 {
    font-size: 66px;
    line-height: 65px;
    color: #ffffff;
    font-weight: 700;
}

.style-foure .hero-content p {
    width: 48%;
    color: #fff;
    font-size: 17px;
    line-height: 25px;
    margin: 26px auto 0;
}

.style-foure.hero-button {
    margin-top: 71px;
    text-align: center;
}

.style-foure .hero-button.style-one a {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 13px 45px;
    font-weight: 500;
    font-size: 17px;
    margin-right: 14px;
}

.style-foure a.button-two {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins", serif;
    background: #0C59DB;
    padding: 17px 34px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: .5s;
}

.style-foure a.button-two::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0;
    transition: .5s;
    border-radius: 30px;
    color: #fff !important;
}

.style-foure a.button-two:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}

.hero_list .owl-nav {
    position: relative;
}

.hero_list .owl-prev {
    position: absolute;
    top: -442px;
    left: 137px;
}

.hero_list .owl-next {
    display: inline-block;
    position: absolute;
    top: -442px;
    right: 137px;
    z-index: 1;
}

.hero_list .owl-prev {
    height: 60px;
    width: 60px;
    line-height: 60px !important;
    text-align: center;
    border-radius: 50%;
    transition: .5s;
    border: 2px solid #818181 !important;
}

.hero_list .owl-next i {
    color: #fff;
    font-size: 19px;
}

.hero_list .owl-next {
    height: 60px;
    width: 60px;
    line-height: 60px !important;
    text-align: center;
    border-radius: 50%;
    transition: .5s;
    border: 2px solid #818181 !important;
}

.hero_list .owl-prev i {
    color: #fff;
    font-size: 19px;
}

.hero_list .owl-next:hover {
    background: #0C59DB !important;
    color: #fff;
    border: 2px solid #0C59DB !important;
}

.hero_list .owl-prev:hover {
    background: #0C59DB !important;
    color: #fff;
    border: 2px solid #0C59DB !important;
}




/*---=====================================================
   <!--Toptech brand Area Css Style foure-->
=========================================================---*/

.brand-area.style-foure {
    background: #000049;
    padding: 43px 0 80px;
}

.brand-area .brand-box {
    text-align: center;
}

.brand-area .owl-carousel .owl-item img {
    display: inline;
    width: inherit;
    text-align: center;
}





/*---=====================================================
   <!--Toptech section-ti8tle Css Style foure-->
=========================================================---*/

.section-title.style-foure.text-left {
    margin-bottom: 54px;
}

.section-title.style-foure.text-center {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title.style-foure.text-center h5.section-sub-title::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../images/home-4/title-shape2.png);
    background-repeat: no-repeat;
    left: 3%;
    right: 0;
    margin: auto;
}

.section-title.style-foure.text-center h5.section-sub-title::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../images/home-4/title-shape2.png);
    background-repeat: no-repeat;
    left: 103%;
    right: 0;
    margin: auto;
    top: 3px;
}

.section-title.style-foure h5.section-sub-title {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0;
    margin-bottom: 12px;
    padding-left: 29px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.section-title.style-foure h5.section-sub-title::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../images/home-4/title-shape2.png);
    background-repeat: no-repeat;
    left: 0;
    top: 4px;
}

.section-title.style-foure h1.section-main-title {
    font-size: 46px;
    line-height: 45px;
    color: #041424;
    font-weight: 700;
}

.section-title.style-foure p.description {
    font-size: 18px;
    line-height: 28px;
    color: #686868;
    font-weight: 400;
    font-family: "Poppins", serif;
    margin: 0;
    padding: 19px 0 0;
    width: 85%;
}

.about-area.style-foure .section-title.style-foure.text-left {
    margin-bottom: 28px;
}

.works-area.style-foure .section-title.style-foure.text-left {
    margin-bottom: 0;
}

.counter-area.style-foure .section-title.style-foure h1.section-main-title {
    color: #fff;
}

.team-area.style-foure .section-title.style-foure h1.section-main-title {
    color: #fff;
}

.awards-one .section-title.style-foure p.description {
    padding: 35px 0 0;
    width: 98%;
}

/*---=====================================================
   <!--Toptech service Area Css Style foure-->
=========================================================---*/


.service-area.style-foure {
    background: #F3F8FC;
    padding: 113px 0 88px;
}

.service-area.style-foure .service-single-box {
    background: #ffff;
    padding: 39px 0 30px 0;
    border-radius: 10px;
    margin: 0 0 0 35px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.service-area.style-foure h3.service-title {
    font-size: 22px;
    color: #041424;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    margin: 0;
    margin-bottom: 12px;
}

.service-area.style-foure p.service-desc {
    font-size: 16px;
    line-height: 28px;
    color: #686868;
    font-weight: 400;
    font-family: "Poppins", serif;
    margin: 0;
    overflow: hidden;
}

.service-area.style-foure .service-icon {
    height: 88px;
    width: 88px;
    line-height: 88px;
    text-align: center;
    background: #0B5AD9;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    float: left;
    margin-right: 24px;
    margin-left: -33px;
}

.service-area.style-foure .service-icon::before {
    position: absolute;
    content: "";
    height: 75%;
    width: 75%;
    border: 1px dashed #fff;
    border-radius: 50%;
    left: 11px;
    top: 11px;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.service-area.style-foure .service-icon-two {
    position: absolute;
    bottom: -25%;
    right: -9%;
    opacity: 0;
    transition: .5s;
}

.service-area.style-foure .service-icon-two a i {
    display: inline-block;
    height: 40px;
    width: 40px;
    background: #0B5AD9;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    border-radius: 5px 0 10px 0;
}


.service-area.style-foure .service-single-box:hover .service-icon-two {
    bottom: 0;
    right: 0;
    opacity: 1;
}






/*---=====================================================
   <!--Toptech about Area Css Style foure-->
=========================================================---*/



.about-area.style-foure {
    padding: 110px 0 120px;
}

.about-area.style-foure .about-title.style-two {
    margin-left: -45px;
}

.about-area.style-foure .about-title h3 {
    font-size: 18px;
    color: #041424;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    margin: 0;
    padding-left: 24px;
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}

.about-area.style-foure .about-title h3::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../images/home-4/title-shape2.png);
    background-repeat: no-repeat;
    left: 0;
    top: 5px;
}

.dreamit-button {
    margin-top: 30px;
    display: inline-block;
}

.dreamit-button a {
    display: inline-block;
    background: var(--secondary-color);
    padding: 15px 35px;
    margin-right: 14px;
    position: relative;
    border-radius: 30px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins", serif;
    z-index: 1;
}

.dreamit-button a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}

.dreamit-button a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}



.about-area.style-foure .about-thumb {
    position: relative;
    z-index: 1;
}

.about-area.style-foure .counter-box {
    display: flex;
    position: absolute;
    bottom: 12%;
    right: 4%;
}

.about-area.style-foure .counter-number h1 {
    background: #000049;
    font-size: 60px;
    color: #ffffff;
    font-weight: 700;
    /* font-family: "Rajdhani"; */
    padding: 16px 27px 12px;
}

.about-area.style-foure .counter-title h3 {
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 700;
    /* font-family: "Rajdhani"; */
    background: #0C59DB;
    padding: 22px 37px 22px;
    border-radius: 0 0 10px 0;
}







/*---=====================================================
   <!--Toptech about Area Css Style foure-->
=========================================================---*/


.counter-area.style-foure {
    background: var(--primary-color);
    padding: 113px 0 86px;
}

.counter-area.style-foure .row.service {
    padding: 74px 0 0;
}

.counter-area.style-foure .counter-single-box-tow {
    margin-bottom: 30px;
}

.counter-area.style-foure .counter-number-tow h1 {
    display: inline-block;
    font-size: 70px;
    line-height: 56px;
    color: #ffffff;
    font-weight: 700;
    /* font-family: "Rajdhani"; */
}

.counter-area.style-foure .counter-number-tow {
    float: left;
    margin-right: 30px;
    position: relative;
    z-index: 1;
}

.counter-area.style-foure .counter-number-tow::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    background: #0C5BDA;
    bottom: -25%;
}

.counter-area.style-foure .counter-content h4 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    margin: 0;
    margin-bottom: 9px;
}

.counter-area.style-foure .counter-content p {
    opacity: 0.600;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", serif;
    margin: 0;
}

.counter-area.style-foure .dreamit-button {
    margin-top: 45px;
    float: right;
}

.counter-area.style-foure .dreamit-button a {
    background: #262664;
    text-transform: uppercase;
    margin-right: 0;
}

.counter-area.style-foure .dreamit-button a::before {
    background: #0C59DB;
}

.counter-area.style-foure .service-single-box-tow {
    border: 1px solid #262664;
    border-radius: 10px;
    padding: 32px 32px 31px;
    margin-bottom: 30px;
    transition: .5s;
}

.counter-area.style-foure h3.service-title-tow {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    margin: 0;
    padding: 28px 0 17px;
}

.counter-area.style-foure p.service-desc-two {
    opacity: 0.600;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", serif;
    margin: 0;
    padding: 0 0 35px;
}

.counter-area.style-foure .service-btn-tow a {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins", serif;
    background: #262664;
    border-radius: 30px;
    padding: 12px 29px 12px;
    position: relative;
    z-index: 1;
}

.counter-area.style-foure .service-btn-tow a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #0C59DB;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 30px;
    transform: scale(0);
    transition: .5s;
}

.counter-area.style-foure .service-btn-tow a:hover::before {
    transform: scale(1);
}

.counter-area.style-foure .service-single-box-tow:hover {
    margin-top: -10px;
}






/*---=====================================================
   <!--Toptech work Area Css Style foure-->
=========================================================---*/



.work-area.style-foure {
    padding: 111px 0 88px;
}

.work-area.style-foure .work-single-box {
    margin-bottom: 30px;
}

.work-area.style-foure .work-thumb {
    position: relative;
    z-index: 1;
}

.work-area.style-foure .work-icon {
    position: absolute;
    top: 19%;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
}

.work-area.style-foure .work-icon a i {
    display: inline-block;
    background: #0E59D9;
    color: #fff;
    font-size: 22px;
    height: 85px;
    width: 85px;
    line-height: 85px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transform: scale(0);
    transition: .5s;
}

.work-area.style-foure .work-icon a i::after {
    position: absolute;
    content: "";
    height: 62px;
    width: 62px;
    border: 1px dashed #fff;
    left: 14%;
    top: 14%;
    border-radius: 50%;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.work-area.style-foure .work-content {
    position: absolute;
    bottom: 9px;
    margin-left: 35px;
}

.work-area.style-foure a h1.work-title {
    display: inline;
    font-size: 24px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    margin-top: 0;
}

.work-area.style-foure p.worK-text {
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", serif;
}

.work-area.style-foure .work-single-box:hover .work-icon a i {
    transform: scale(1);
}







/*---=====================================================
   <!--Toptech works Area Css Style foure-->
=========================================================---*/

.works-area.style-foure {
    background: #F3F8FC;
    padding: 120px 0 120px;
}

.works-area.style-foure .works-thumb {
    position: relative;
    z-index: 1;
}

.works-area.style-foure .works-video-icon {
    position: absolute;
    top: 39%;
    left: 40%;
}

.works-area.style-foure .works-video-icon a {
    display: inline-block;
    background: #0C59DB;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    height: 100px;
    width: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.works-area.style-foure .works-video-icon a::before {
    position: absolute;
    content: "";
    height: 80px;
    width: 80px;
    border: 1px dashed #ffff;
    left: 10%;
    top: 11%;
    border-radius: 50%;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.works-area.style-foure p.works {
    font-size: 18px;
    line-height: 26px;
    color: #686868;
    font-weight: 400;
    font-family: "Poppins", serif;
    padding: 30px 0 0;
    width: 84%;
}

.dreamit-button2 {
    display: inline-block;
}

.dreamit-button2 a {
    display: inline-block;
    font-size: 16px;
    line-height: 48px;
    color: #686868;
    font-weight: 500;
    font-family: "Poppins", serif;
}

.dreamit-button2 a i {
    display: inline-block;
    font-size: 18px;
    margin-left: 4px;
}





/*---=====================================================
   <!--Toptech project Area Css Style foure-->
=========================================================---*/


.project-area.style-foure {
    padding: 120px 0 82px;
    background: url(../images/home-4/project-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.project-area.style-foure .project-single-box {
    margin-bottom: 30px;
}

.project-area.style-foure h1.project-number {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    height: 75px;
    width: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    margin-bottom: 27px;
    margin-top: 0;
}

.project-area.style-foure h1.project-number::before {
    position: absolute;
    content: "";
    height: 55px;
    width: 55px;
    border: 1px dashed #fff;
    left: 14%;
    top: 14%;
    border-radius: 50%;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.project-area.style-foure h3.project-title {
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    margin: 0;
}

.project-area.style-foure p.project-desc {
    opacity: 0.600;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", serif;
    margin: 0;
    padding: 12px 0 14px;
}

.project-area.style-foure .project-btn a {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins", serif;
    position: relative;
    z-index: 1;
}

.project-area.style-foure .project-btn a::before {
    position: absolute;
    content: "";
    height: 1px;
    background: #fff;
    bottom: 0;
    transition: .5s;
    width: 0;
}

.project-area.style-foure .project-btn a i {
    display: inline-block;
    font-size: 18px;
    position: relative;
    top: 1px;
    margin-left: 4px;
}

.project-area.style-foure .project-btn a:hover::before {
    width: 100%;
}




/*---=====================================================
   <!--Toptech Team Area Css Style foure-->
=========================================================---*/


.team-area.style-foure {
    background: var(--primary-color);
    padding: 112px 0 111px;
}

.team-area.style-foure .team-single-box {
    overflow: hidden;
    margin-bottom: 30px;
}

.team-area.style-foure .team-single-box.style-twos {
    margin-top: 50px;
}

.team-area.style-foure .team-single-box.style-foure {
    margin-top: 50px;
}

.team-area.style-foure .team-thumb {
    position: relative;
    z-index: 1;
}

.team-area.style-foure .team-thumb img {
    width: 100%;
}

.team-area.style-foure .team-social-icon {
    position: absolute;
    top: -37%;
    right: 10%;
    opacity: 0;
    transition: .5s;
}

.team-area.style-foure .team-social-icon a i {
    display: inline-block;
    color: #ffff;
    font-size: 15px;
    background: #0C59DB;
    height: 40px;
    width: 40px;
    line-height: 37px;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    position: relative;
    z-index: 1;
}

.team-area.style-foure .team-social-icon a i:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    left: 0;
    z-index: -1;
    border-radius: 50%;
    transition: .5s;
    transform: scale(0);
}

.team-area.style-foure .team-content {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.team-area.style-foure h3.team-title {
    font-size: 22px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    margin: 0;
}

.team-area.style-foure p.team-text {
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", serif;
    margin: 0;
}

.team-area.style-foure .team-bottom-title h3 {
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 500;
    /* font-family: "Rajdhani"; */
    text-align: center;
    padding: 32px 0 0;
    display: block;
    position: relative;
    z-index: 1;
}

.team-area.style-foure .team-bottom-title h3 span {
    display: inline-block;
    color: var(--secondary-color);
}

.team-area.style-foure .team-bottom-title h3::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../images/home-4/team-shape.png);
    background-repeat: no-repeat;
    left: 0;
    top: 78%;
}

.team-area.style-foure .team-bottom-title h3::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../images/home-4/team-shape2.png);
    background-repeat: no-repeat;
    left: 70%;
    top: 78%;
}

.team-area.style-foure .team-social-icon a i:hover:after {
    transform: scale(1);
}

.team-area.style-foure .team-single-box:hover .team-social-icon {
    top: 16%;
    opacity: 1;
}





/*---=====================================================
   <!--Toptech testimonial Area Css Style foure-->
=========================================================---*/



.testimonial-area.style-foure {
    padding: 111px 0 89px;
}

.testimonial-area.style-foure .testi-single-box {
    background: #F3F7FD;
    padding: 36px 37px 31px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.testimonial-area.style-foure .testi-author-box {
    padding: 0 0 30px;
    border-bottom: 1px solid #DEE2E7;
}

.testimonial-area.style-foure .testi-top-content {
    margin-left: 24px;
    margin-top: 3px;
}

.testimonial-area.style-foure h3.testi-title {
    font-size: 24px;
    color: #041424;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    margin: 0;
    line-height: 25px;
}

.testimonial-area.style-foure .testi-rating {
    padding: 21px 0 33px;
}

.testimonial-area.style-foure span.testi-text {
    font-size: 16px;
    color: #686868;
    font-weight: 400;
    font-family: "Poppins", serif;
    display: inline-block;
}

.testimonial-area.style-foure .testi-rating ul li {
    display: inline-block;
}

.testimonial-area.style-foure .testi-rating ul li i {
    display: inline-block;
    background: #0D5ADC;
    color: #fff;
    font-size: 10px;
    height: 19px;
    width: 19px;
    line-height: 19px;
    text-align: center;
    margin-left: -2px;
}

.testimonial-area.style-foure h4.testi-date {
    font-size: 15px;
    color: #686868;
    font-weight: 400;
    font-family: "Poppins", serif;
    margin: 0;
    margin-left: 44%;
}

.testimonial-area.style-foure p.testi-dasc {
    font-size: 17px;
    line-height: 26px;
    color: #686868;
    font-weight: 400;
    font-family: "Poppins", serif;
    margin: 0;
}





/*=============================
Awards One Css
===============================*/
.awards-one {
    position: relative;
    display: block;
    background: var(--thm-black);
    padding: 120px 0px 120px;
    z-index: 1;
    background: #F3F8FC;
}

.text-box span {
    display: inline-block;
    font-size: 20px;
    color: #041424;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
    background-color: #ffffff;
    border: 1px solid rgba(30, 30, 30, 0.08);
    height: 45px;
    width: 45px;
    text-align: center;
    border-radius: 50%;
    line-height: 45px;
    margin-right: 63px;
}

.text-box i {
    display: inline-block;
    float: right;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: #ffffff;
    border: 1px solid rgba(30, 30, 30, 0.08);
    line-height: 52px;
    text-align: center;
    font-size: 22px;
    position: relative;
    z-index: 1;
    transition: .5s;
}

.text-box i::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #0C59DB;
    left: 0;
    top: 0;
    border-radius: 50%;
    z-index: -1;
    transition: .5s;
    transform: scale(0);
}

.text-box i:hover {
    color: #fff;
}

.text-box i:hover::after {
    transform: scale(1);
}

.text-box i {
    float: right;
}

.awards-one .sec-title h2 {
    color: var(--thm-white);
}

.awards-one__inner {
    position: relative;
    display: block;
}

.awards-one__inner ul {
    position: relative;
    display: block;
}

.awards-one__single {
    position: relative;
}

.awards-one__inner ul li {
    position: relative;
    padding: 43px 0px 43px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border-bottom: 1px solid rgba(30, 30, 30, 0.08);
}

.awards-one__inner ul li::before {
    position: absolute;
    left: 0;
    bottom: -2px;
    right: 0;
    height: 2px;
    background: var(--thm-primary);
    transform: scaleX(0.9) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 0;
    content: "";
}

.awards-one__inner ul li:hover::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.awards-one__inner ul li:first-child {
    border-bottom: 1px solid rgba(30, 30, 30, 0.08);
}

.awards-one__inner ul li .content-box {
    position: relative;
    align-items: center;
}

.awards-one__inner ul li .date-box {
    position: relative;
    display: block;
    text-align: center;
}

.awards-one__inner ul li .date-box span {
    color: #fff;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.awards-one__inner ul li .date-box h2 {
    color: #fff;
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
}

.awards-one__inner ul li .logo-box {
    position: relative;
    display: block;
    margin-left: 130px;
}

.awards-one__inner ul li .logo-box img {
    width: 100%;
}

.awards-one__inner ul li .text-box {
    position: relative;
    display: block;
    margin-left: 0;
}

.awards-one__inner ul li .text-box p {
    color: #000;
}

.awards-one__inner ul li .text-box h2 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    margin-top: 0;
}

.awards-one__inner ul li .text-box h2 a {
    font-size: 26px;
    color: #041424;
    font-weight: 600;
    /* font-family: "Rajdhani"; */
}

.awards-one__inner ul li .text-box h2 a:hover {
    color: var(--secondary-color);
}

.awards-one__img {
    position: absolute;
    width: 264px;
    height: 264px;
    top: 50px;
    left: 185px;
    pointer-events: none;
    transform: translate(-100%, -50%);
    overflow: hidden;
    border-radius: 0%;
    opacity: 0;
    transform: scale(0.8);
    transition: all .5s ease-out;
    z-index: 9;
}

.awards-one__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    transition: transform .4s ease-out;
}







/*---=====================================================
   <!--Toptech Footer Area Css Style foure-->
=========================================================---*/


.footer-area.style-foure {
    padding: 120px 0 96px;
    background: var(--primary-color);
}

.footer-area.style-foure .row.footer-top {
    padding: 0 0 97px;
    border-bottom: 1px solid #1A1A5C;
}

.footer-area.style-foure .row.footer-bottom {
    padding: 92px 0 0;
}

.footer-area.style-foure .footer-top-social-icon {
    text-align: right;
}

.footer-area.style-foure .footer-top-social-icon ul li {
    display: inline-block;
}

.footer-area.style-foure .footer-top-social-icon ul li a i {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    background: #031B75;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    margin-left: 15px;
    position: relative;
    z-index: 1;
}

.footer-area.style-foure .footer-top-social-icon ul li a i:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #0E59D9;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 50%;
    transform: scale(0);
    transition: .5s;
}

.footer-area.style-foure .footer-widget-title h4 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    font-family: "Poppins", serif;
    margin-top: 0;
    margin-bottom: 32px;
}

.footer-area.style-foure .footer-widget-menu ul li a {
    display: inline-block;
    opacity: 0.600;
    font-size: 16px;
    line-height: 41px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", serif;
}

.footer-area.style-foure .footer-widget-menu ul li {
    font-size: 16px;
    line-height: 51px;
    font-weight: 400;
    font-family: "Poppins", serif;
    color: #B9B7C5;
}

.footer-area.style-foure li.footer-descrip {
    line-height: 28px !important;
    margin-top: 11px;
}

.footer-area.style-foure .footer-widget-menu ul li i {
    display: inline-block;
    color: #fff;
    font-size: 22px;
    position: relative;
    top: 4px;
    margin-right: 20px;
}

.footer-area.style-foure .footer-widget-content p {
    font-size: 16px;
    line-height: 28px;
    color: #B9B7C5;
    font-weight: 400;
    font-family: "Poppins", serif;
    margin: 0;
    margin-bottom: 39px;
}

.footer-area.style-foure .footer-newslatter-box input {
    height: 56px;
    border: none;
    outline: 0;
    border-radius: 30px;
    background: #031B75;
    width: 83%;
    padding: 0 25px 0;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", serif;
}

.footer-area.style-foure .footer-newslatter-box input::placeholder {
    opacity: 0.600;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", serif;
}

.footer-area.style-foure .footer-newslatter-box button {
    height: 56px;
    border-radius: 30px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins", serif;
    background: #0C59DB;
    border: none;
    width: 42%;
    margin-left: -83px;
}

.footer-area.style-foure .footer-top-social-icon ul li a i:hover:after {
    transform: scale(1);
}



/*---=====================================================
   <!--Toptech footer-bottom-area.style-foure-->
=========================================================---*/



.footer-bottom-area.style-foure {
    background: #0D0D53;
    padding: 22px 0 22px;
}

.footer-bottom-content p {
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

.footer-botton-list {
    text-align: right;
}

.footer-botton-list ul li {
    display: inline-block;
}

.footer-botton-list ul li a {
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 400;
    margin-left: 25px;
}






/*===========================
<-- Loader Css -->
=============================*/
.loader-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: 0.8s 1s ease;
    z-index: 99999;
}

.loader {
    position: relative;
    display: block;
    z-index: 201;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    transition: all 1s 1s ease;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    -webkit-animation: spin 1.5s linear infinite;
    -moz-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.loader:before {
    position: absolute;
    content: '';
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: var(--secondary-color);
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:after {
    position: absolute;
    content: '';
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-right-color: #fff;
    -webkit-animation: spin 2.5s linear infinite;
    -moz-animation: spin 2.5s linear infinite;
    -o-animation: spin 2.5s linear infinite;
    animation: spin 2.5s linear infinite;
}

/*/ Here comes the Magic /*/

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-wrapper .loder-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: #111;
    z-index: 2;
}

.loader-wrapper .loder-section.left-section {
    left: 0;
    transition: 1s 1.4s ease;
}

.loader-wrapper .loder-section.right-section {
    right: 0;
    transition: 1s 1.4s ease;
}

/*/ When page loaded /*/


/* Home css start */


.section-title h1 .word {
    color: var(--primary-color);
}

.section-title h1 span {
    color: var(--fourth-color);
}

.header-logo a>img {
    width: 76%;
}

.about-icon-thumb img {
    width: 65px;
}

.contact-area-info .style-one.section-title h1 {
    color: #fff !important;
}

.contact-area-info .style-one.section-title h4 {
    color: #fff;
}

@keyframes slide {
    from {
        transform: translateX(0);

    }

    to {
        transform: translateX(-100%);

    }
}

.logos {
    overflow: hidden;
    padding: 60px 0;
    background: white;
    white-space: nowrap;
    position: relative;
    z-index: -9999;
}

.logos:before,
.logos:after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
}

.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}


.logos:hover .logos-slide {
    animation-play-state: paused;


}

.logos-slide {
    display: inline-block;
    animation: 150s slide infinite linear;
}

.logos-slide img {
    height: 50px;
    margin: 0 40px;
}

.footer-menu-2 {
    margin-top: 58px;
}

.footer-row-main {
    display: flex;
    justify-content: center;
}

.footer-main {
    padding-top: 40px;
}

.footer-about-us {
    border-bottom: 1px solid #cecece2e;
}

.mobile-br-footer {
    display: none;
}

@media only screen and (min-width:320px) and (max-width:767px) {
    .style-foure .hero-content p {
        width: 90% !important;
    }

    .style-one .about-icon-box-content p {
        width: 100% !important;
        text-align: justify;
    }

    .style-one .about-icon-thumb {
        margin: 0px auto;
    }

    .style-one .about-icon-box-content h4 {
        text-align: center;
    }

    /* .style-one.service-area .flip-box-thumb {
        text-align: center;
    } */

    .inner-style.toptech-button a {
        padding: 14px 28px;
    }

    .style-three.contact-area-info .contact-content p {
        color: #fff;
    }

    .style-one .testi-desc p {
        margin-top: 0px !important;
    }

    .logos:after,
    .logos:before {
        display: none;
    }

    .style-one .footer-widget-desc p {
        text-align: left;
    }

    .mobile-footer-content {
        margin-top: -100px !important;
    }

    .style-one.section-title p {
        text-align: justify;
    }

    .mobile-br-footer {
        display: block !important;
    }

    .style-three.contact-area-info {
        padding: 123px 0 150px;
    }
}


@media only screen and (min-width:768px) and (max-width:990px) {


    .style-one .footer-widget-menu ul li a {
        line-height: 40px;
        font-size: 14px;
    }

    .style-three.contact-area-info .contact-content p {
        width: 100% !important;
    }

    .style-one .footer-bottom-content p {
        font-size: 14px !important;
    }

    .style-one .about-icon-box-content p {
        width: 100% !important;
    }

    .style-one.section-title p {
        width: 100% !important;
    }
}

@media only screen and (min-width:991px) and (max-width:1023px) {

    .style-one .about-icon-box-content p {
        width: 100% !important;
    }

    .style-one.section-title p {
        width: 100% !important;
    }

    .style-three.contact-area-info .contact-content p {
        width: 100% !important;
    }

}

@media only screen and (min-width:1024px) and (max-width:1198px) {
    .style-one .flip-box {
        width: 100% !important;
    }
}

@media only screen and (max-width:1999px) {
    .footer-main-1 {
        display: flex;
        justify-content: center;
    }
}

@media only screen and (min-width:1199px) and (max-width:1299px) {
    .style-one .flip-box {
        width: 100% !important;
    }
}

.mobile-logo {
    display: inline;
}

.mobile-logo img {
    width: 78%;
    padding: 10px 0 0;
}



@media only screen and (min-width:1200px) and (max-width:1400px) {
    .style-one .footer-widget-menu ul li a {
        font-size: 14px !important;
    }

    .style-one.service-area .flip-box-inner {
        height: 300px;
    }
}

.hero_list .owl-prev {
    transform: rotate(180deg);
}

.hero_list .owl-next {
    transform: rotate(-180deg);
}

.service-area .style-one.section-title h4 {
    color: #fff;
}

.header-area.style-foure .header-menu .sub-menu li a {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

@media only screen and (min-width:525px) and (max-width:767px) {
    .style-one .flip-box {
        margin-bottom: 218px !important;
        width: 100%;
    }

    .style-three.contact-area-info .contact-content p {
        width: 100% !important;
    }
}

.client-area {
    padding: 60px 0px;
}


@media only screen and (min-width:320px) and (max-width:767px) {
    #wowslider-container1 {
        margin: 108px auto 50px !important;
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    #wowslider-container1 {
        margin: 134px auto 50px !important;
    }
}

/* .contact-right img{
    position: absolute;
} */


@media only screen and (min-width:320px) and (max-width:767px) {
    .contact-right img {
        display: none;
    }

    .inner-style.toptech-button a {
        font-size: 14px;
    }
}



.marquee {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 600px;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
}

.marquee-horizontal {
    position: relative;
    z-index: 200;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 60px;
    justify-content: flex-start;
    align-items: center;
    background-color: #000000;
}

.track-horizontal {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-horizontal 45s linear infinite;
}

.marquee-horizontal-large {
    position: relative;
    z-index: 200;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 190px;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 auto;
}

.spacer-30 {
    width: 30px;
    height: 30px;
}




.icon-container-alt {
    display: flex;
    /* width: 250px; */
    height: 150px;
    padding-right: 30px;
    padding-left: 30px;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
}









.flex-vertical {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin-top: 30px; */
}

.flex-horizontal {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}







.marquee-cover-horizontal {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 10;

}




@keyframes marquee-horizontal {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* .marquee-main {
    display: flex;
    align-items: center;
    background-color: #80808099;
    justify-content: center;
    position: relative;
    top: 0;
 

} */

/* .marquee-sub-content {
    display: flex;
    align-items: center;

} */

.marquee-sub-content img {
    width: 50px;
    padding-top: 10px;
}

.gallery {
    /* width: 80%;
	height: 90vh; */
    max-width: 1600px;
    /* max-height: 800px; */
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.gallery-image {
    /* width: 100%; */
    /* height: calc(50% - 20px); */
    /* min-width: 300px; */
    /* min-height: 200px; */

    margin: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.image {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
    transition: 1s;
}

/* popup */

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    /* max-width: 1300px; */
    height: 100vh;
    /* max-height: 800px; */
    /* border-radius: 20px; */
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    transition: 1s;
    opacity: 0;
}

.popup.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.popup.active .close-btn,
.popup.active .image-name,
.popup.active .index,
.popup.active .large-image,
.popup.active .arrow-btn {
    opacity: 1;
    transition: opacity .5s;
    /* transition-delay: 1s; */
}

.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    /* background: #000; */
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-weight: 300;
}

.image-name {
    opacity: 0;
    color: var(--accent-color);
    padding-top: 6px;
    font-size: 30px;
}

.close-btn {
    opacity: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 49px;
    /* border-radius: 50%; */
    background: #f00;
    cursor: pointer;
    font-weight: 700;
    font-size: 25px;

}

.arrow-btn {
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    border-radius: 50%;
    border: none;
    background: none;
    cursor: pointer;
}

.left-arrow {
    left: 10px;
    transform: rotate(180deg);
}

.right-arrow {
    right: 10px;
    transform: rotate(2deg);
}

.arrow-btn:hover {
    background: rgba(0, 0, 0, 0.5);
}

.index {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 80px;
    font-weight: 300;
    color: var(--secondary-color);
    opacity: 0;
}

.large-image {
    margin-top: 5%;
    width: 100%;
    height: 80%;
    object-fit: contain;
    opacity: 0;

}

.product-section {
    padding: 70px 0px;
}

.product-section .style-one.section-title h1,
.product-section .style-one.section-title h4 {
    color: #fff;
}

@media only screen and (min-width:320px) and (max-width:767px) {
    .marquee-sub-content h3 {
        font-size: 20px;
    }

    .marquee-sub-content img {
        width: 50px;
    }
}

.style-one.feature-area {
    padding: 70px 0px !important;
}

.partner-area {
    position: relative;
    z-index: 999;
    background: #fff;
}

.partner-area .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    display: none;
}

.partner-area .logos::before {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    display: none;
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .mobile-logo img {
        width: 25%;
    }
}

.footer-logo img {
    width: 20%;
}

/* .header-logo {
    display: inline-block;
    position: relative;
    padding: 30px;
    padding-left: 40px;
    top: 90px;
    z-index: 9999;
}
.header-logo::before {
    position: absolute;
    width: 100%;
    height: 200%;
    right: 25px;
    top: -171px;
    background-color: #FF5E14;
    content: "";
}
.header-logo img{
    position: relative;
}



  .box::after {
      content: "";
      position: absolute;
      bottom: 0;
      
      right: 0;
      width: 40px;
      height: 40px;
      background-color: #FF5E14;
      clip-path: polygon(0 0, 100% 100%, 0 100%);
      transition: 0.3s;
    transform: rotate(95deg);
  }


  .box::before {
    content: "";
        position: absolute;
        bottom: 0;
        left: -34px;
        top: 8px;
        width: 40px;
        height: 40px;
        background-color: #FF5E14;
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
        transition: 0.3s;
        transform: rotate(70deg);
  }
 */

/* 
.header-logo {
    position: absolute;
    width: 310px;
    background-color: #fff;
    height: 120px;
    line-height: 120px;
    text-align: center;
    display: inline-block;
    top: 10px;
    z-index: 22;
    box-shadow:0 7px 18px -2px rgb(0 0 0 / 20%);


}


.header-logo::before {
    position: absolute;
    width: 0;
    height: 0;
    border-bottom: 26px solid #fff;
    border-left: 26px solid transparent;
    content: "";
    right: 100%;
    top: 78%;
    z-index: -1;
    transform: scaleY(-1);
}


.header-logo::after {
    position: absolute;
    width: 0;
    height: 0;
    border-bottom: 26px solid #fff;
    border-right: 26px solid transparent;
    content: "";
    left: 100%;
    top: 78%;
    z-index: -1;
    transform: scaleY(-1);
} */
.header-logo {
    position: absolute;
    width: 310px;
    background-color: #fff;
    height: 120px;
    line-height: 120px;
    text-align: center;
    display: inline-block;
    top: 0px;
    z-index: 22;
    box-shadow: 0 7px 18px -2px rgb(0 0 0 / 20%);
}


/* .marquee-main::before {
    position: absolute;
    width: 30px;
    height: 30px;
    border-bottom: 40px solid #80808099;
    border-left: 40px solid transparent;
    content: "";
    left: 94%;
    z-index: -999;
    transform: rotate(314deg);

} */
.label {
    white-space: nowrap;
    background: #f3f3f3;
    color: var(--secondary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 25px;
    position: relative;
    justify-content: center;

}

.label img {
    padding-right: 10px;
}

.label::after {
    content: "";
    position: absolute;
    right: -40px;
    border: 20px solid transparent;
    border-left-color: #f3f3f3;
}

.marquee-content .logos {
    padding: 30px 0px !important;
}
.marquee-content .logos-slide {
display: inline-block !important;
    animation: 40s slide infinite linear !important;
}


.marquee-main {
    padding: 40px 0px;
    background-color: #f3f3f3;
}

@media only screen and (min-width: 575px) and (max-width: 767px) {
    #wowslider-container1 {

        margin: 134px auto 50px !important;
    }



}

.header-container {
    padding: 0px 70px;
}

.social {
    position: fixed;
    top: 35%;
    z-index: 9999;
    left: 20px;
}

.social {
    padding: 0px;
    transform: translate(-270px, 0);
}

.social li {
    display: block;
    margin: 5px;
    background: var(--fourth-color);
    width: 300px;
    text-align: right;
    padding: 10px;
    border-radius: 0 30px 30px 0;
    transition: all 1.5s;
}

.social li:hover {
    transform: translate(100px, 0);
    background: var(--third-color);
    transition: all 1.5s;
}

.social li:hover a {
    color: white;
}

.social li:hover i {
    color: var(--third-color);
    background: white;
    transform: rotate(360deg);
    transition: all 1.5s;
}

.social li i {
    margin-left: 10px;
    color: var(--fourth-color);
    background: white;
    padding: 10px;
    border-radius: 50%;
    /* width: 20px; */
    /* height: 20px; */
    transform: rotate(0deg);
    text-align: center;
    font-size: 20px;
}

@media only screen and (min-width:320px) and (max-width:767px) {
    .mobile-logo img {
        width: 55%;
    }

    .mean-container .mean-bar {
        padding: 0px;
    }
}








@media only screen and (min-width:320px) and (max-width:375px) {
    #flex-container {
        margin-top: 5.5rem;

    }

    .slider-item p {
        font-size: 8px !important;
        line-height: 10px !important;
        margin-bottom: 0px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;

    }

    .slider-item h2 {
        font-size: 16px !important;
        line-height: 15px !important;
        padding-bottom: 10px !important;

    }

    .slider-item .slider-content {
        width: 50% !important;

    }

    .slider-item .button {
        padding: 5px !important;
        font-size: 10px !important;
    }

    .slick-slide {
        /* height: 27vh !important; */
    }

    .slider-item img {
        height: 100% !important;
    }
}



@media only screen and (min-width:375px) and (max-width:425px) {
    #flex-container {
        margin-top: 6rem;

    }

    .slider-item p {
        font-size: 8px !important;
        line-height: 10px !important;
        margin-bottom: 0px !important;
        padding-bottom: 10px !important;

    }

    .slider-item h2 {
        font-size: 16px !important;
        line-height: 15px !important;
        padding-bottom: 10px !important;

    }

    .slider-item .slider-content {
        width: 50% !important;

    }

    .slider-item .button {
        padding: 5px !important;
        font-size: 10px !important;
    }

    .slick-slide {
        height: 27vh !important;
    }

    .slider-item img {
        height: 100% !important;
    }
}

@media only screen and (min-width:425px) and (max-width:575px) {
    #flex-container {
        margin-top: 6.5rem;

    }

    .slider-item p {
        font-size: 8px !important;
        line-height: 10px !important;
        margin-bottom: 0px !important;
        padding-bottom: 10px !important;

    }

    .slider-item h2 {
        font-size: 16px !important;
        line-height: 15px !important;
        padding-bottom: 10px !important;

    }

    .slider-item .slider-content {
        width: 50% !important;

    }

    .slider-item .button {
        padding: 5px !important;
        font-size: 10px !important;
    }

    .slick-slide {
        height: 35vh !important;
    }

    .slider-item img {
        height: 100% !important;
    }
}


@media only screen and (min-width:575px) and (max-width:768px) {
    #flex-container {
        margin-top: 8.5rem;

    }

    .slider-item p {
        font-size: 8px !important;
        line-height: 10px !important;
        margin-bottom: 0px !important;
        padding-bottom: 10px !important;

    }

    .slider-item h2 {
        font-size: 16px !important;
        line-height: 15px !important;
        padding-bottom: 10px !important;

    }

    .slider-item .slider-content {
        width: 50% !important;

    }

    .slider-item .button {
        padding: 5px !important;
        font-size: 10px !important;
    }

    .slick-slide {
        /* height: 50vh !important; */
    }

    .slider-item img {
        height: 100% !important;
    }
}




@media only screen and (min-width:768px) and (max-width:991px) {
    #flex-container {
        margin-top: 8.5rem;

    }

    .slider-item p {
        font-size: 14px !important;
        line-height: 20px !important;
        margin-bottom: 0px !important;
        padding-bottom: 20px !important;

    }

    .slider-item h2 {
        font-size: 20px !important;
        line-height: 30px !important;
        padding-bottom: 10px !important;

    }

    .slider-item .slider-content {
        width: 50% !important;

    }

    .slider-item .button {
        /* padding: 5px !important; */
        font-size: 13px !important;
    }

    .slick-slide {
        /* height: 50vh !important; */
    }

    .slider-item img {
        height: 100% !important;
    }
}

/* .sec-painted{
    pointer-events: painted !important;
    cursor: pointer !important;
} */


/* Mano */

/* @media query Padding Top And Bottom Section */
/* padding Top  */

@media only screen and (min-width:320px) and (max-width:768px) {
    .pt--media-30-15 {
        padding-top: 15px !important;
    }
  }
  
  .pt--media-30-15 {
    padding-top: 30px !important;
  }
  
  @media only screen and (min-width:320px) and (max-width:768px) {
    .pt--media-40-20 {
        padding-top: 20px !important;
    }
  }
  
  .pt--media-40-20 {
    padding-top: 40px !important;
  }
  
  @media only screen and (min-width:320px) and (max-width:768px) {
    .pt--media-60-30 {
        padding-top: 30px !important;
    }
  }
  
  .pt--media-60-30 {
    padding-top: 60px ;
  }

  @media only screen and (min-width:320px) and (max-width:768px) {
    .pt--media-70-35 {
        padding-top: 35px !important;
    }
  }
  
  .pt--media-70-35 {
    padding-top: 70px ;
  }
  
  @media only screen and (min-width:320px) and (max-width:768px) {
    .pt--media-80-40 {
        padding-top: 40px !important;
    }
  }
  
  .pt--media-80-40 {
    padding-top: 80px;
  }
  
  /* Padding bottom */
  
  @media only screen and (min-width:320px) and (max-width:768px) {
    .pb--media-30-15 {
        padding-bottom: 15px !important;
    }
  }
  
  .pb--media-30-15 {
    padding-bottom: 30px !important;
  }
  
  @media only screen and (min-width:320px) and (max-width:768px) {
    .pb--media-40-20 {
        padding-bottom: 20px !important;
    }
  }
  
  .pb--media-40-20 {
    padding-bottom: 40px !important;
  }
  
  @media only screen and (min-width:320px) and (max-width:768px) {
    .pb--media-60-30 {
        padding-bottom: 30px !important;
    }
  }
  
  .pb--media-60-30 {
    padding-bottom: 60px ;
  }

  @media only screen and (min-width:320px) and (max-width:768px) {
    .pb--media-70-35 {
        padding-bottom: 35px !important;
    }
  }
  
  .pb--media-70-35 {
    padding-bottom: 70px ;
  }
  
  @media only screen and (min-width:320px) and (max-width:768px) {
    .pb--media-80-40 {
        padding-bottom: 40px !important;
    }
  }
  
  .pb--media-80-40 {
    padding-bottom: 80px ;
  }
  
  @media only screen and (min-width:320px) and (max-width:768px) {
    .pb--media-100-50 {
        padding-bottom: 50px !important;
    }
  }
  
  .pb--media-100-50 {
    padding-bottom: 100px ;
  }

  @media only screen and (min-width:320px) and (max-width:768px) {
    .pb--media-120-60 {
        padding-bottom: 60px !important;
    }
  }
  
  .pb--media-120-60 {
    padding-bottom: 120px ;
  }

  /* Margin Top  */

  @media only screen and (min-width:320px) and (max-width:768px) {
    .mt--media-30-15 {
        margin-top: 15px !important;
    }
  }
  
  .mt--media-30-15 {
    margin-top: 30px ;
  }
  
  @media only screen and (min-width:320px) and (max-width:768px) {
    .mt--media-40-20 {
        margin-top: 20px !important;
    }
  }
  
  .mt--media-40-20 {
    margin-top: 40px;
  }
  
  @media only screen and (min-width:320px) and (max-width:768px) {
    .mt--media-60-30 {
        margin-top: 30px !important;
    }
  }
  
  .mt--media-60-30 {
    margin-top: 60px;
  }
  
  @media only screen and (min-width:320px) and (max-width:768px) {
    .mt--media-80-40 {
        margin-top: 40px !important;
    }
  }
  
  .mt--media-80-40 {
    margin-top: 80px;
  }
  
  /* Margin bottom */
  
  @media only screen and (min-width:320px) and (max-width:768px) {
    .mb--media-30-15 {
        margin-bottom: 15px !important;
    }
  }
  
  .mb--media-30-15 {
    margin-bottom: 30px ;
  }

  @media only screen and (min-width:320px) and (max-width:768px) {
    .mb--media-40-20 {
        margin-bottom: 20px !important;
    }
  }
  
  .mb--media-40-20 {
    margin-bottom: 40px;
  }
  
  @media only screen and (min-width:320px) and (max-width:768px) {
    .mb--media-60-30 {
        margin-bottom: 30px !important;
    }
  }
  
  .mb--media-60-30 {
    margin-bottom: 60px;
  }
  
  @media only screen and (min-width:320px) and (max-width:768px) {
    .mb--media-80-40 {
        margin-bottom: 40px !important;
    }
  }
  
  .mb--media-80-40 {
    margin-bottom: 80px;
  }
  
  /* padding-section */
  
  /* padding-section top */
  .pt--10 {
    padding-top: 10px !important;
  }
  
  .pt--15 {
    padding-top: 15px !important;
  }
  
  .pt--20 {
    padding-top: 20px !important;
  }
  
  .pt--30 {
    padding-top: 30px !important;
  }
  
  .pt--40 {
    padding-top: 40px !important;
  }
  
  .pt--60 {
    padding-top: 60px !important;
  }
  
  .pt--80 {
    padding-top: 80px !important;
  }
  
  .pt--100 {
    padding-top: 100px !important;
  }
  
  .pt--120 {
    padding-top: 120px !important;
  }
  
  /* padding-section bottom */
  
  .pb--10 {
    padding-bottom: 10px !important;
  }
  
  .pb--15 {
    padding-bottom: 15px !important;
  }
  
  .pb--20 {
    padding-bottom: 20px !important;
  }
  
  .pb--30 {
    padding-bottom: 30px !important;
  }
  
  .pb--40 {
    padding-bottom: 40px !important;
  }
  
  .pb--60 {
    padding-bottom: 60px !important;
  }
  
  .pb--80 {
    padding-bottom: 80px !important;
  }
  
  .pb--100 {
    padding-bottom: 100px !important;
  }
  
  .pb--120 {
    padding-bottom: 120px !important;
  }
  
  /* margin-section */
  
  /* margin-section top */
  .mt--10 {
    margin-top: 10px !important;
  }
  
  .mt--15 {
    margin-top: 15px !important;
  }
  
  .mt--20 {
    margin-top: 20px !important;
  }
  
  .mt--30 {
    margin-top: 30px !important;
  }
  
  .mt--40 {
    margin-top: 40px !important;
  }
  
  .mt--60 {
    margin-top: 60px !important;
  }
  
  .mt--80 {
    margin-top: 80px !important;
  }
  
  .mt--100 {
    margin-top: 100px !important;
  }
  
  .mt--120 {
    margin-top: 120px !important;
  }
  
  /* padding-section bottom */
  
  .mb--10 {
    margin-bottom: 10px !important;
  }
  
  .mb--15 {
    margin-bottom: 15px !important;
  }
  
  .mb--20 {
    margin-bottom: 20px !important;
  }
  
  .mb--30 {
    margin-bottom: 30px !important;
  }
  
  .mb--40 {
    margin-bottom: 40px !important;
  }
  
  .mb--60 {
    margin-bottom: 60px !important;
  }
  
  .mb--80 {
    margin-bottom: 80px !important;
  }
  
  .mb--100 {
    margin-bottom: 100px !important;
  }
  
  .mb--120 {
    margin-bottom: 120px !important;
  }


  @media only screen and (min-width:320px) and (max-width:768px) {

  }

  /* About Section */

/* .about-hdr-cnt {
    font-size: 40px !important;
  } */
  .about-wwa-cnt {
    margin-bottom: 20px !important;
  }

  .about-wwa-cnt h1 {
    margin-top: 20px !important;
    font-size: 40px !important;
}

.gmv-bg-img-1{
    background: url(../images/about-gmv-img-1.jpg) !important;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 60px 50px;
}
.gmv-bg-img-2{
    background: url(../images/about-gmv-img-2.jpg) !important;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 60px 50px;
}
.gmv-bg-img-3{
    background: url(../images/about-gmv-img-3.jpg) !important;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 60px 50px;
}

.style-three .contact-info-content h6 {
    color: #ffffff;
    line-height: 30px;
}

/* Contact Seaction */

.cont-agree-sec input {
    position: relative;
    top: 4px;
    width: 30px !important;
    height: 18px !important;
}

/* Career Section  */

.career-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.career-form h2 {
    color: #343a40;
    font-weight: bold;
}
.career-form label {
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    margin-left: 10px;
}
.career-form .form-control {
    padding: 15px 10px !important;
    border-radius: 5px;
    border: 1px solid #ced4da;
}
.career-form .btn-primary {
    background-color: var(--fourth-color);
    border-color: var(--fourth-color);
    padding: 10px 60px;
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
}
.career-form .btn-primary:hover {
    background-color: var(--third-color);
    border-color: var(--third-color);
}
.career-form .form-control::placeholder {
    font-size: 14px !important;
    color: #a5a5a5;
}
.btn-container {
    display: flex;
    justify-content: center;
}
.wwo-cnt-1{
    color: var(--fourth-color) !important;!i;!;
    font-size: 25px !important;
    margin-bottom: 6px !important;
}
.wwo-cnt-2{
    color: #fd7e14 !important;
    font-size: 17px !important;
}

.wwo-sec-wrap{
    margin-right: 40px;
}

/* Services Section */

/* Enterprise Resource Planning (ERP) */

.erp-sect-cnt{
    padding-top: 0px !important;
}
.erp-sect-cnt h4{
    font-size: 33px !important;
    margin-bottom: 5px !important;
}
.erp-sect-cnt-2{
    margin-top: 15px !important;
    margin-bottom: 10px !important;
}


/* Services Section */

.service-cnt-ac{
    display: flex;
    align-items: center;
}

.style-three .single-input-box select {
    color: #747474;
    font-weight: 400;
}

.header-clr-1{
    color: #0267b4 !important;
    margin-bottom: 15px;
}


.service-details-icon-thumb img{
    border-radius: 50%;
}


/* Inner Banner */

/* .about-inner-banner {
    background: url(../images/about-banner.jpg) !important;
    padding: 60px 0 60px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-top: 0px;
    position: relative;
    height: 420px;
    width: 100%;
}
.services-inner-banner {
    background: url(../images/services-banner.jpg) !important;
    padding: 60px 0 60px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-top: 0px;
    position: relative;
    height: 420px;
    width: 100%;
}
.solution-inner-banner {
    background: url(../images/solution-banner.jpg) !important;
    padding: 60px 0 60px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-top: 0px;
    position: relative;
    height: 420px;
    width: 100%;
}
.products-inner-banner {
    background: url(../images/product-banner.jpg) !important;
    padding: 60px 0 60px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-top: 0px;
    position: relative;
    height: 420px;
    width: 100%;
}
.career-inner-banner {
    background: url(../images/career-banner.jpg) !important;
    padding: 60px 0 60px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-top: 0px;
    position: relative;
    height: 420px;
    width: 100%;
}
.contact-inner-banner {
    background: url(../images/contact-banner.jpg) !important;
    padding: 60px 0 60px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    margin-top: 0px;
    position: relative;
    height: 420px;
    width: 100%;
} */


/* About Sec */

@media only screen and (max-width:768px){
    .gmv-br-d{
        display: none;
    }
}


/* contact sec */

.mb--27{
    margin-bottom: 27px;
}


@media only screen and (max-width:768px){
.header-clr-1 {
    font-size: 25px;
    color: #0267b4 !important;
    margin-bottom: 10px;
    line-height: 30px;
}
.blog-details-content h3{
    font-size: 22px !important;
    line-height: 30px;
}
p.blog-details-desc {
    margin-bottom: 0px;
}
}


.services-details-area h5{
    font-size: 30px;
    color: var(--primary-color);
}
.blog-details-content h3{
    color: var(--third-color);
}

@media only screen and (max-width:575px){
.wwo-sec-wrap {
    margin-right: 0px;
}
.ww0-mb{
    display: block !important;
}
}

/* .style-three .single-pricing-box:hover {
    background: linear-gradient(45deg, #cf0e16ed, #0267b4ed);
    transition: 0.3s linear all !important;
} */

.project-details-list-item ul li p{
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
}

.project-details-content h2{
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}
.project-details-content h3{
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
    margin-top: 10px;
}
.project-details-content p{
    margin-bottom: 15px;
}

@media only screen and (min-width:1200px){
.style-three .single-pricing-box {
    margin: 30px;
}
}


/* Inner Banner */

.breadcumb-content{
    max-width: 1000px;
}
.breadcumb-content ul li {
    max-width: 670px;
}

.ui-ux-br{
    border: 1px solid #2222;
    padding: 30px;
    border-radius: 20px;
}

@media only screen and (max-width:768px){
.ui-ux-br {
    padding: 20px 10px;
}
}

.project-details-item-images img{
    border-radius: 10px;
}


/* Font Size */ 
/* .fs-25{
    font-size: 25px !important;
}
.fs-26{
    font-size: 26px !important;
}
.fs-27{
    font-size: 27px !important;
}
.fs-28{
    font-size: 28px !important;
}
.fs-29{
    font-size: 29px !important;
}
.fs-30{
    font-size: 30px !important;
}
.fs-32{
    font-size: 32px !important;
} */

@media only screen and (max-width:768px){
.breadcumb-content {
    margin-top: 40px;
}
.breadcumb-content h4 {
    line-height: 35px;
}
/* .fs-25{
    font-size: 21px !important;
}
.fs-26{
    font-size: 21px !important;
}
.fs-27{
    font-size: 21px !important;
}
.fs-28{
    font-size: 21px !important;
}
.fs-29{
    font-size: 21px !important;
}
.fs-30{
    font-size: 31px !important;
}
.fs-32{
    font-size: 31px !important;
} */
}

.breadcumb-area{
    display: flex;
    align-items: center;
}


@media only screen and (max-width:575px){

.about-inner-banner {
    height: 420px;
}
.services-inner-banner {
    height: fit-content;
}
.solution-inner-banner {
    height: 420px;
}
.products-inner-banner {
    height: 420px;
}
.career-inner-banner {
    height: 420px;
}
.contact-inner-banner {
    height: 420px;
}
}

.wwo-cnt-1{
    font-weight: 500 !important;
}
.wwo-cnt-2{
    font-weight: 400 !important;
}

.blog-details-content h3{
    font-size: 32px;
}

@media only screen and (min-width:769px){
.inner-style .job-item-content h4 {
    margin: 0px 0px 0px 20px;
    }
}


/* Product Section */

.second-product-section {
    border: 2px solid red;
    background-color: yellow;
}

@media only screen and (max-width:768px){
.slider-content{
    display: none;
}
}

.cont-form-em{
    color: var(--primary-color);
}

p:hover .cont-form-em{
    color: var(--secondary-color);
}

@media only screen and (max-width: 575px) {
    .style-one .about-icon-box-content p {
      text-align: center;
    }
    .toptech-button{
        text-align: center;
    }
    .style-one.section-title p {
        text-align: left;
      }
      .style-one .footer-widget-desc p {
        text-align: center;
      }
      .footer-logo img {
        width: 90%;
      }
  }


    .policy-section {
      padding: 60px 0px;
    }
  
    .policy-content p {
      margin-bottom: 0px;
      text-align: justify;
  
    }
  
    .policy-content {
      padding: 5px 0px;
    }
  
    .policy-content h5 {
      color: var(--primary-color);
      font-weight: 600;
    }
  
    .policy-content span {
      color: var(--secondary-color);
      font-weight: 500;
    }
  
    .policy-content ul li i {
      padding-right: 8px;
      color: var(--secondary-color);
  
    }
  
    .policy-content h6 {
      color: var(--primary-color);
      font-weight: 500;
    }





        /* zero client */
    
        .first-content-img {
          width: 100%;
        }
    
        .content {
          flex: 1;
          padding-right: 40px;
          opacity: 0;
          transform: translateX(-50px);
          animation: slideInLeft 1s ease-out forwards;
        }
    
        .content h2 {
          font-size: 2.5em;
          color: #333;
          margin-bottom: 20px;
        }
    
        .content p {
          font-size: 1.2em;
          line-height: 1.6;
          color: #555;
        }
    
    
    
    
    
    
        .product-list li {
          font-size: 20px;
          margin-bottom: 10px;
          list-style-type: "✅ ";
          padding-left: 10px;
    
        }
    
        .btn-custom {
          margin-top: 20px;
        }
    
        .lead {
          font-size: 18px !important;
          font-weight: 400;
          line-height: 35px;
          text-align: justify;
        }
    
        /* 
        .zero-client-section {
          padding: 50px 0 0px;
        } */
    
    
        .img-fluid {
          width: 100%;
        }
    
        .zero-client-section h2 {
          color: var(--primary-color);
          font-weight: 600;
          font-size: 35px;
        }
    
        /* Default Desktop View */
        .product-grid {
          display: grid;
          grid-template-columns: 2fr 1fr;
          gap: 20px;
        }
    
        .box-group {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 20px;
        }
    
        .product-box,
        .single-box {
          background: #fff;
          padding: 15px;
          text-align: center;
          border: 2px dashed #ddd;
          border-radius: 10px;
    
    
        }
    
        .single-box>div {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          /* optional if you want vertical center */
          height: 100%;
          text-align: center;
        }
    
        .single-box p,
        .product-box p {
          font-size: 20px;
          font-weight: 700;
          color: var(--secondary-color);
          margin-top: 10px;
    
        }
    
        .single-box img {
          max-width: 100%;
          height: auto;
          margin-bottom: 10px;
        }
    
        /* ✅ Tablet View */
        @media (max-width: 991px) {
          .box-group {
            grid-template-columns: repeat(2, 1fr);
          }
    
          .product-grid {
            grid-template-columns: 1fr;
          }
    
          .single-box {
            margin-top: 30px;
          }
        }
    
        /* ✅ Mobile View */
        @media (max-width: 576px) {
          .box-group {
            grid-template-columns: 1fr;
          }
    
          .product-box,
          .single-box>div {
            padding: 10px;
          }
    
          .product-box img,
          .single-box img {
            max-width: 100%;
            height: auto;
          }
        }
    
    
        .alpha-details {
          display: flex;
          gap: 40px;
          /* padding: 30px; */
          border-radius: 15px;
        }
    
        .alpha-details .alpha-left {
          flex: 1;
        }
    
        .alpha-details .alpha-left h2 {
          font-size: 32px;
          margin-bottom: 10px;
          font-weight: 600;
          color: var(--primary-color);
        }
    
        .alpha-details .alpha-left h4 {
          font-size: 20px;
          margin-bottom: 10px;
          color: #000;
          font-weight: 500;
        }
    
        .alpha-details .alpha-left p {
          font-size: 16px;
          line-height: 30px;
          color: #444;
          max-width: 490px;
        }
    
        .alpha-details .alpha-left a {
          display: inline-block;
          margin-top: 20px;
          padding: 10px 20px;
          background-color: var(--primary-color);
          color: white;
          text-decoration: none;
          border-radius: 6px;
          font-weight: bold;
          transition: 0.3s ease;
        }
    
        .alpha-details .alpha-left a:hover {
          background-color: var(--secondary-color);
        }
    
        .alpha-details .alpha-right {
          flex: 1;
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 20px;
        }
    
        .alpha-details .box {
          background: #f1f1f1;
          padding: 20px;
          border-radius: 10px;
          box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.03);
        }
    
        .alpha-details .box h3 {
          font-size: 18px;
          margin-bottom: 10px;
          color: #333;
        }
    
        .alpha-details .box p {
          font-size: 14px;
          color: #555;
          line-height: 1.5;
        }
    
        /* Responsive */
        @media (max-width: 768px) {
          .alpha-details {
            flex-direction: column;
          }
    
          .alpha-details .alpha-right {
            grid-template-columns: 1fr;
          }
        }
    
        .alpha-row p {
          color: #000 !important;
    
        }
    
        .alpha-section {
          padding: 50px 0px;
        }
    
        .alpha-content h2 {
          color: var(--primary-color);
          font-weight: 700;
          margin-bottom: 10px;
        }
    
        .alpha-content p strong {
          color: var(--secondary-color);
        }
    
        .alpha-content p {
          font-size: 18px;
    
        }
    
        .alpha-content a {
          display: inline-block;
          margin-top: 20px;
          padding: 10px 20px;
          background-color: var(--primary-color);
          color: white;
          text-decoration: none;
          border-radius: 6px;
          font-weight: bold;
          transition: 0.3s ease;
    
        }
    
        .alpha-content a:hover {
          background-color: var(--secondary-color);
        }
    
        .alpha-content ul li p {
          line-height: 40px;
        }
    
        .alpha-left h2 {
          color: var(--primary-color);
        }
    
        .service-content h4 {
          color: var(--secondary-color);
          font-weight: 600;
          margin-bottom: 10px;
    
        }
    
        .service-content p {
          max-width: 500px;
        }
    
    
        .alpha-row {
          padding-top: 60px;
    
        }
    
        .first-content h1 {
          color: var(--primary-color);
          font-weight: 500;
          padding-bottom: 10px;
        }
    
        .first-content a,
        .btn-custom {
          display: inline-block;
          margin-top: 20px;
          padding: 10px 20px;
          background-color: var(--primary-color) !important;
          color: white;
          text-decoration: none;
          border-radius: 6px;
          font-weight: bold;
          transition: 0.3s ease;
        }
    
        .first-content a:hover,
        .btn-custom:hover {
          background-color: var(--secondary-color) !important;
          color: #fff;
        }
    
    
    
    
        .alpha-lg-main,
        .zero-lg-main {
          display: flex;
          align-items: center;
        }
    
        .blog-title h2 {
          font-weight: 600;
          color: var(--primary-color);
          margin-bottom: 10px;
        }
    
    
        .zero-client-section::after {
          /* content: ""; */
          background-color: #cacaca;
          width: 500px;
        }
    
        .zero-client-section:nth-child(even) {
          background-color: #f0f4f8;
          padding: 50px 0px;
        }
    
        .zero-client-section:nth-child(odd) {
    
          padding: 50px 0px;
        }
    
        .alpha-section .container {
          border-bottom: 3px dashed #dddddd;
          padding-bottom: 50px;
        }
    
        .product-list li::marker {
          color: var(--secondary-color);
        }
    
        @media only screen and (min-width:320px) and (max-width:767px) {
    
          .zero-client-section h2 {
            font-size: 25px;
          }
    
          .service-content h4 {}
    
          .alpha-details .alpha-left h2 {}
    
          .first-content h1 {
            font-size: 30px;
    
          }
    
          .first-content-img {
            padding-top: 40px;
          }
    
          .single-service-box .service-icon,
          .service-content h4 {
            text-align: center;
          }
    
          .alpha-left {
            padding: 0px 0px 40px;
          }
    
          .alpha-img {
            padding: 20px;
          }
        }
    
        @media only screen and (min-width:768px) and (max-width:991px) {
          .alpha-details .alpha-left p {
            max-width: none;
          }
    
          .alpha-left {
            padding: 40px 0;
          }
        }
    
        .first-content-img img {
          width: 100%;
        }
    
        .main-zero-section {
          padding: 50px 0px;
        }
    
        .alpha-img img {
          width: 100%;
        }
    
    
        .breadcumb-content ul li h1 {
          color: #fff;
          font-weight: 600;
    
        }
    
        .alpha-lg-main-section {
          padding: 60px 0px;
        }
    
    
        .alpha-section:last-of-type .container {
          border-bottom: none;
          padding-bottom: 0;
        }
    
        form {
          max-width: 600px;
          margin: 50px auto;
          padding: 30px;
          background: #f9f9f9;
          border: 1px solid #ddd;
          border-radius: 12px;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
          font-family: 'Segoe UI', sans-serif;
        }
    
        form h2 {
          margin-bottom: 10px;
          font-size: 28px;
          color: #333;
          text-align: center;
        }
    
        form p {
          margin-bottom: 25px;
          font-size: 18px;
          color: #777;
          text-align: center;
        }
    
        label {
          display: block;
          margin-bottom: 5px;
          font-weight: 600;
          font-size: 20px;
          color: #333;
        }
    
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
          width: 100%;
          padding: 12px 15px;
          margin-bottom: 20px;
          border: 1px solid #ccc;
          border-radius: 8px;
          font-size: 16px;
          transition: border-color 0.3s ease;
        }
    
        input:focus,
        textarea:focus {
          border-color: #007BFF;
          outline: none;
        }
    
        textarea {
          min-height: 100px;
          resize: vertical;
        }
    
        button[type="submit"] {
          background-color: #007BFF;
          color: white;
          border: none;
          padding: 14px 20px;
          border-radius: 8px;
          margin-top: 20px;
          font-size: 20px;
          cursor: pointer;
          font-weight: 600;
          display: inline;
          transition: background-color 0.3s ease;
        }
    
        button[type="submit"]:hover {
          background-color: #0056b3;
        }
    
        .du-img img {
          width: 100%;
          padding-bottom: 20px;
        }
    
        .justify-center {
          justify-content: center !important;
        }
    
        .header-menu ul li .product-sub-menu {
    
          width: 180px !important;
        }
    
        .header-menu ul li .product-sub-menu li a {
          width: 180px !important;
    
        }
    
        .blog-title h4 {
          color: var(--secondary-color);
          font-weight: 500;
        }
    
        .brand-area .owl-carousel .owl-item img {
          display: inline;
          width: 60% !important;
          text-align: center;
        }