/* Common Styles Start */

:root {
    font-size: 10px;
    /* Colors */
    --theme_color_green: #20B354;
    --theme_color_orange: #f99e25;
    --theme_color_17: #171717;
    --theme_color_1b: #1b1b1b;
    --color_white: #ffffff;
    --color_black: #000000;
    /* Font Family */
    --poppins: "Poppins", sans-serif;
}


/* Reset CSS Start */

body {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0;
    font-family: var(--poppins);
    font-weight: 400;
    background-color: var(--color_white);
}

.content-wrapper {
    overflow-x: hidden;
}

ol,
ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}


/* Default autofill style */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    box-shadow: 0 0 0 40px #fff inset !important;
    -webkit-box-shadow: 0 0 0 40px #fff inset !important;
}


/* Reset CSS End */


/* Cstm Button Styles Start */

html,
body {
    scroll-behavior: smooth;
}

.cstm-btn-green {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 500;
    padding: 1.5rem 2rem;
    border-radius: 5px;
    border: none;
    transition: 0.3s;
    background-color: var(--theme_color_green);
    color: var(--color_white);
    display: inline-block;
}

.cstm-btn-green:hover,
.cstm-btn-green:active,
.cstm-btn-green:focus {
    background-color: #158d3f;
    color: var(--color_white);
}


/* Cstm Button Styles End */


/* Cstm Scrollbar Start */


/* *::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: transparent;
}
*::-webkit-scrollbar {
	width: 5px;
}
*::-webkit-scrollbar-thumb {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #c1c1c1;
} */


/* Cstm Scrollbar End */


/* Cstm Standard Padding/Margin Start */

.standard-padding-y {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.standard-padding-top {
    padding-top: 10rem;
}

.standard-padding-bottom {
    padding-bottom: 10rem;
}

.standard-padding-y-more {
    padding-top: 15rem;
    padding-bottom: 15rem;
}

.standard-padding-top-more {
    padding-top: 15rem;
}

.standard-padding-bottom-more {
    padding-bottom: 15rem;
}

.standard-padding-y-less {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.standard-padding-top-less {
    padding-top: 7rem;
}

.standard-padding-bottom-less {
    padding-bottom: 7rem;
}


/* Cstm Standard Padding/Margin End */


/* Custom Container Styles Start */

@media screen and (min-width: 1600px) {
    .cstm-container {
        max-width: 152rem;
    }
}


/* Custom Container Styles End */


/* Form Styles Start */

.contact-form .form-control.error {
    border-color: #ff2626;
}

.contact-form label.error {
    color: #ff2626;
    font-size: 1.4rem;
}


/* Form Styles End */

.full-height-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.more-text {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: 0.7s;
}

.more-text.shown {
    opacity: 1;
    visibility: visible;
    max-height: 10000px;
    transition: 0.7s;
}

.moreless-button {
    font-size: 2rem;
    margin: 2rem 0;
    display: inline-block;
    text-decoration: underline;
}

.section-heading {
    font: 500 4rem / 1.25 var(--poppins);
    color: #0F0F0F;
    margin-bottom: 1rem;
}

.section-sub-heading {
    font: 500 2.4rem / 1.25 var(--poppins);
    margin-bottom: 1rem;
}

.section-text {
    font: 400 2rem / 1.5 var(--poppins);
    color: #1B1B1B;
}


/* Common Styles End */


/* -------------------------------- */


/* Header Start */

.header-section {
    padding: 1.5rem 0;
}

.header-logo-wrapper a {
    display: flex;
    align-items: center;
    color: inherit;
}

.header-logo-wrapper img {
    height: 5.5rem;
    display: block;
}

.header-logo-wrapper .logo-text {
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 600;
    color: #161616;
    text-transform: uppercase;
    margin: 5px 0 0 1rem;
}

.header-links li:not(:last-child) {
    margin-right: 2.5rem;
}

.header-links li a {
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: 500;
    color: #000;
}

.header-links li a.cstm-btn-green {
    color: #fff;
}

.header-links li a:hover {
    color: var(--theme_color_green);
}

.header-links li a.cstm-btn-green:hover {
    color: #fff;
}

.mobile-menu-btn {
    display: none;
}


/* Header End */


/* -------------------------------- */


/* Footer Start */

.footer-section {
    padding: 2rem 0;
    background-color: #1A1A1A;
    color: var(--color_white);
}

.copyright-text p {
    font: 400 1.6rem / normal var(--poppins);
    margin-bottom: 0;
}

.footer-section .social-links li:not(:last-child) {
    margin-right: 1rem;
}

.footer-section .social-links a {
    font-size: 1.8rem;
    line-height: 1;
    color: #fff;
}

.footer-section .social-links a:hover {
    color: var(--theme_color_green);
}


/* Footer End */


/* -------------------------------- */


/* Main Content Start */


/* Banner Slider Start */

.top-banner-section {
    min-height: 60rem;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    background: #20B354 url(../img/top-banner-lines.svg) no-repeat center center;
    background-size: cover;
}

.top-banner-section .banner-row {
    display: flex;
    align-items: center;
}

.banner-text-part {
    max-width: 67rem;
}

.banner-text-part h1 {
    font: 500 5.5rem / 1.25 var(--poppins);
    color: #fff;
    margin-bottom: 2rem;
}

.banner-text-part p {
    font: 400 2rem / 1.5 var(--poppins);
    color: #fff;
    max-width: 87%;
}


/* Banner Slider End */

.vision-and-work-wrapper {
    background-color: #FCF8ED;
    position: relative;
}

.vision-and-work-wrapper::before {
    content: '';
    position: absolute;
    bottom: 7%;
    left: 0;
    height: 40rem;
    width: 3.5rem;
    background: url(../img/green-circle.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.vision-and-work-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    height: 40rem;
    width: 3.5rem;
    background: url(../img/black-circle.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.vision-section {
    padding: 3rem 0 0;
}

.vision-section .inner-container {
    max-width: 84%;
    margin: 0 auto;
}

.read-more-btn {
    padding: 0.5rem 0.25rem;
    border-bottom: 2px solid currentColor;
    font: 600 1.8rem / 1.5 var(--poppins);
    color: var(--theme_color_green);
}

.read-more-btn:hover {
    color: inherit;
}

.partial-visible-text {
    max-height: 100px;
    overflow: hidden;
    transition: 0.7s ease;
}

.partial-visible-text.shown {
    max-height: 750px;
    transition: 0.7s ease;
}

.read-more-wrapper {
    /* background: linear-gradient(180deg, rgba(252, 248, 237, 0) -46.83%, #FCF8ED 22.71%); */
    /* margin-top: -30px; */
    padding: 0 0 3rem 0;
    z-index: 1;
    position: relative;
    transition: 0.5s ease-in;
}

.read-more-btn-click {
    margin-top: 0;
    transition: 0.5s ease;
}

.services-slider .service-item {
    background-color: #fff;
}

.service-item .service-text .text-heading {
    font: 500 3.4rem / 1.25 var(--poppins);
    color: var(--theme_color_green);
    margin-bottom: 1rem;
}

.service-item .service-text .text-desc {
    font: 400 1.8rem / 1.75 var(--poppins);
    letter-spacing: 0;
    color: #1B1B1B;
}

.services-slider .owl-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.services-slider.owl-theme .owl-dots .owl-dot span {
    background: #D9D9D9;
    width: 18px;
    height: 4px;
    border-radius: 0;
    margin: 0 5px;
}

.services-slider.owl-theme .owl-dots .owl-dot.active span,
.services-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--theme_color_green);
}

.services-slider.slides {
    position: relative;
    margin-bottom: 0;
}

.services-slider.slides .slick-dotted.slick-slider {
    margin: 0;
}

.services-slider.slides .slick-dots {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-slider.slides .slick-dots li:not(:last-child) {
    margin-bottom: 7px;
}

.services-slider.slides .slick-dots li button::before {
    display: none;
}

.services-slider.slides .slick-dots li button {
    width: 3px;
    height: 20px;
    border: 0 none;
    outline: 0;
    background: #d1d1d1;
    font-size: 0;
    cursor: pointer;
    margin: auto;
    display: block;
    padding: 0;
}

.services-slider.slides .slick-dots li.slick-active button {
    background: var(--theme_color_green);
}

.services-slider .service-item.slick-slide>.row {
    min-height: 60rem;
    padding: 2rem 5rem;
    border-radius: 5px;
    overflow: hidden;
}

.services-slider .service-item.slick-slide>.row {
    opacity: 0;
    transform: translateY(100px);
    opacity: 0;
    transition: all .5s ease;
}

.services-slider .service-item.slick-active>.row {
    opacity: 1;
    transition-delay: .3s;
    transform: translateY(0);
}

.services-slider .service-item.slick-cloned>.row {
    opacity: 0.3;
}

.about_tech_logos_main ul {
    width: 100%;
    padding: 0;
}

.about_tech_logos_main ul li {
    display: inline-block;
    vertical-align: top;
    padding: 0 6px 20px 6px
}

.about_tech_box {
    text-align: center
}

.about_tech_box span {
    width: 100%;
    padding-bottom: 5px;
    height: 35px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center
}

.about_tech_box span img {
    display: block;
    max-width: 30px;
    max-height: 30px;
    margin: auto
}

.about_tech_box strong {
    color: #423f3f;
    font-size: 11px;
    line-height: 1.2em;
    max-width: 64px;
    display: block;
    font-weight: 400;
}

.service-modal .modal-header {
    border: none;
}

.service-modal .btn-close {
    margin-right: 1rem;
    margin-top: 1rem;
}

.service-modal .modal-body {
    padding: 0 3rem 3rem;
}

.service-modal .service-item {
    align-items: center;
}

.services-listing .service-item-box {
    background-color: #f3f3f3;
    padding: 3rem 2rem 2rem;
    border-radius: 5px;
    height: 100%;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.services-listing .service-item-box:hover {
    background-color: #ececec;
    transition: 0.3s;
}

.service-item-box .service-icon {
    display: block;
    height: 6rem;
    margin: 0 auto 2rem;
}

.service-item-box .service-title {
    font: 500 2rem / 1.25 var(--poppins);
    color: #0F0F0F;
    margin-bottom: 0.5rem;
}

.service-item-box .service-btn {
    border-bottom: 1px solid currentColor;
    font-size: 1.4rem;
    display: inline-block;
}

.service-item-box .service-btn:hover {
    color: var(--theme_color_green);
}

.work-section {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.work-boxes-row {
    margin-top: 3rem;
}

.work-box {
    background-color: #fff;
    padding: 2rem 2rem;
    border-radius: 5px;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.work-box-icon {
    display: block;
    height: 6rem;
    margin: 0 auto 2rem;
}

.work-box-title {
    font: 500 2rem / 1.25 var(--poppins);
    color: #0F0F0F;
    margin-bottom: 0.5rem;
}

.work-box-desc {
    font: 400 1.6rem / 1.6 var(--poppins);
    letter-spacing: 0.04em;
    color: #1B1B1B;
    margin-bottom: 0;
}

.work-box .stroke-text {
    font-size: 8rem;
    line-height: 1;
    letter-spacing: 0.04em;
    font-weight: 900;
    opacity: 0.3;
    color: #fff;
    -webkit-text-stroke: 2px rgb(32 179 84 / 30%);
    position: absolute;
    top: -7px;
    right: -4px;
}

.work-box .stroke-text.dev {
    right: -25px;
}

.services-section {
    padding: 3rem 0 4rem;
}

.testimonials-section {
    padding: 4rem 0;
    background: var(--theme_color_green);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    width: 25rem;
    height: calc(100% + 10rem);
    background: url(../img/testimonials-bg-E.svg) no-repeat;
    background-size: cover;
    position: absolute;
    top: -8rem;
    left: 0;
}

.testimonials-section::after {
    content: '';
    width: 25rem;
    height: calc(100% + 10rem);
    background: url(../img/testimonials-bg-D.svg) no-repeat;
    background-size: cover;
    position: absolute;
    top: -8rem;
    right: 0;
}

.testimonials-section .inner-container {
    max-width: 80%;
    margin: 0 auto;
}

.testimonials-section .section-heading {
    color: #fff;
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: #CEDC00;
}

.testimonials-slider {
    margin-top: 3rem;
}

.testimonial-title {
    font: 600 1.7rem / 1.25 var(--poppins);
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
}

.testimonial-text {
    font: 400 1.7rem / 1.6 var(--poppins);
    letter-spacing: 0.04em;
    margin-bottom: 3rem;
    padding: 0 10rem;
    position: relative;
}

.testimonial-text::before {
    content: '';
    width: 4.2rem;
    height: 4.2rem;
    background: url(../img/testi-slider-start-quote.svg) no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.testimonial-text::after {
    content: '';
    width: 4.2rem;
    height: 4.2rem;
    background: url(../img/testi-slider-end-quote.svg) no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.testimonial-by {
    font: 600 1.7rem / 1.25 var(--poppins);
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.testimonial-by-designation {
    font: 400 1.7rem / 1.25 var(--poppins);
    letter-spacing: 0.04em;
    margin-bottom: 0;
}

.contact-section {
    background: #fff url(../img/contact-image.jpg) no-repeat;
    background-size: cover;
}

.contact-form-col {
    padding: 5rem 5rem 5rem 20rem;
    background-color: rgba(255, 255, 255, 0.95);
}

.contact-form .form-control {
    font-size: 1.6rem;
    padding: 1.25rem 1.6rem;
    font-weight: 400;
    color: #969696;
    background-color: #E3E3E3;
    border-color: #E3E3E3;
    border-radius: 5px;
}

.contact-form .form-control:focus {
    background-color: #fff;
    border-color: var(--theme_color_green);
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 12rem;
    resize: none;
}

.team-section {
    padding: 4rem 0 6rem;
    background-color: #F9F9F9;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    width: 50rem;
    height: 50rem;
    background: url(../img/team-green-circle.svg) no-repeat;
    background-size: cover;
    position: absolute;
    top: -25rem;
    left: -30rem;
}

.team-section::after {
    content: '';
    width: 50rem;
    height: 50rem;
    background: url(../img/team-green-circle.svg) no-repeat;
    background-size: cover;
    position: absolute;
    top: 2rem;
    right: -20rem;
}

.team-section .inner-container {
    max-width: 70%;
    margin: 0 auto;
}

.team-section .section-heading {
    color: #2BB75D;
}

.contact-form .error2#recaptcha_error>div {
    border: 1px solid #ff2626;
}


/* Main Content End */

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* -------------------------------- */