@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --white: #fff;
    --black: #000;
    --theme-blue: #16b0f8;
    --theme-color: #83c942;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Montserrat", sans-serif;
    /* font-family: "Poppins", sans-serif; */
}

@media (min-width: 1700px) {
    .container {
        max-width: 1466px;
    }
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Montserrat", sans-serif;
    /* font-family: "Poppins", sans-serif; */
}

img {
    max-width: 100%;
    height: auto;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

figure {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.navbar-brand img {
    max-height: 150px;
    transition: 0.3s ease-in-out;
}

header {
    /* position: absolute; */
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99999;
    top: 0;
    width: 100%;
    transition: 0.3s ease-in-out;
}

header.sticky {
    position: fixed;
}

header.sticky .navbar-brand img {
    max-width: 100px;
}

.navbar-nav {
    gap: 1rem 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    line-height: 1;
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: transform 0.3s ease-in-out;
    background-color: var(--theme-color);
    transform-origin: center;
    transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

.form-inline {
    margin-left: 2rem;
}

.callBtn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--black);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.callBtn strong {
    font-size: 1.375rem;
    display: block;
    font-weight: 600;
}

.callBtn:hover {
    color: var(--theme-color);
}

.main-slider {
    position: relative;
}

.main-slider h2 {
    font-size: 4rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
    margin-left: -0.75rem;
    padding-left: 0.75rem;
    border-left: 5px solid var(--theme-color);
    font-family: "Playfair Display", serif;
}

.main-slider h2 span {
    font-size: 1.7rem;
    font-weight: 600;
    display: block;
}

.main-slider p {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 400;
}

.carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.themeBtn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75em 1em;
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 35px;
    background-color: var(--theme-blue);
}

.themeBtn i {
    font-size: 2.25rem;
    transition: 0.3s ease-in-out;
}

.themeBtn:hover i {
    transform: rotate(360deg);
}

.themeBtn:hover {
    color: var(--white);
    background-color: var(--theme-color);
}

.counterSec {
    background-color: var(--theme-color);
    padding: 2rem 0;
}

.counterSec .col-md-3 + .col-md-3 {
    border-left: 1px solid rgb(255 255 255/20%);
}

.countBox {
    padding: 2rem;
    gap: 0.5rem;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.countBox h3 {
    color: var(--white);
    font-size: 3.75rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
}

.countBox p {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
    text-align: center;

}

.secHeading {
    font-size: 3.125rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.secHeading span {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* About section */
.aboutSec {
    padding-top: 20rem;
}

.aboutSec .secHeading {
    text-transform: capitalize;
}

.aboutSec figure {
    height: 650px;
    width: 650px;
    background-color: var(--theme-color);
    display: flex;
    border-radius: 50%;
    align-items: flex-end;
    justify-content: center;
    box-shadow: -1rem -1rem var(--theme-blue);
    animation: pulse infinite 3s;
}

.whatdo {
    gap: 0.5rem;
    display: flex;
    padding: 1rem 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.whatdo h3 {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1;
    color: var(--black);
}

.whatdo p {
    color: var(--black);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
}

.aboutSec .btn-group {
    gap: 1rem;
}

.servicesSec {
    background-color: #f3f3f3;
}

.serv-card {
    position: relative;
    margin-bottom: 2rem;
    background-color: var(--black);
}

.serv-card img {
    width: 100%;
    opacity: 0.7;
    transition: 0.3s ease-in-out;
}

.serv-card .content {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    top: 0rem;
    right: 0rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    transition: 0.3s ease-in-out;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
}

.serv-card .content h3 {
    font-size: 1.875rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1rem;
}

.serv-card:hover img {
    opacity: 1;
}

.serv-card:hover .content {
    transform-origin: top;
    transform: scaleY(1);
}

/* Team Section */

/* Team Card */
.teamCard {
    border-radius: 10px;
    text-align: center;
    background-color: #f9f9f9;
}

.teamCard img {
    border-radius: 10px;
}

.teamCard h3 {
    font-size: 1.875rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 0rem;
    color: var(--black);
}

.teamCard p {
    font-size: 1.875rem;
    font-weight: 400;
    line-height: 1;
    color: #858585;
}

.teamCard .content {
    padding: 1.5rem 1rem;
    transition: 0.3s ease-in-out;
}

.teamCard .socialIo {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

.teamCard .socialIo li:nth-child(1) a {
    transition: 0.4s ease-in-out;
}

.teamCard .socialIo li:nth-child(2) a {
    transition: 0.5s ease-in-out;
}

.teamCard .socialIo li:nth-child(3) a {
    transition: 0.6s ease-in-out;
}

.teamCard .socialIo li:nth-child(4) a {
    transition: 0.7s ease-in-out;
}

.teamCard .socialIo li a {
    color: var(--black);
    height: 35px;
    width: 35px;
    font-size: 1.5rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transform: scale(0);
    border: none;
    transform-origin: bottom;
}

.teamCard .socialIo li a:hover {
    color: var(--white);
    background-color: var(--secondary);
}

.teamCard:hover .socialIo li a {
    transform: scale(1);
}

/* Contact Section */
.contactSec {
    padding: 4rem 0;
    background-color: var(--theme-color);
}

.contactSec figure {
    margin: -11rem 0 -4rem;
}

.contactSec .secHeading {
    text-transform: uppercase;
    color: var(--white);
}

.contactForm {
    margin-top: 3rem;
}

.contactForm .form-group {
    margin-bottom: 3rem;
    position: relative;
}

.contactForm .form-group .form-control {
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 1.125rem;
    color: var(--white);
    padding: 0 0 1rem 3rem;
    border-bottom: 1px solid #c9c9c9;
}

.contactForm .form-group textarea::placeholder,
.contactForm .form-group input::placeholder {
    color: var(--white);
}

.contactForm .form-group textarea.form-control {
    height: 160px;
}

.contactForm .themeBtn {
    border: 0;
}

.contactForm .themeBtn:hover {
    background-color: var(--white);
    color: var(--theme-blue);
}

/* Contact Section */

/* testimonialSec */
.testiThumb {
    padding: 0 1rem;
    text-align: center;
    transition: 0.3s ease-in-out;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testimonialCarousel .slick-current + .slick-active .testiThumb {
    box-shadow: 0px 3px 60px #0000000a;
}

.testimonialInner .col-md-4 + .col-md-4::before,
.testimonialCarousel .slick-current + .slick-active .testiThumb:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-left: 1px solid var(--theme-blue);
}

.testiThumb p {
    font-size: 1.125rem;
    margin-bottom: 0;
    line-height: 1.8;
    color: var(--black);
    margin: 2rem 0 1rem;
}

.testiThumb h3 {
    margin: 0.5rem 0 5px;
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--theme-blue);
}

.testiThumb .star {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testiThumb .star li i {
    color: #ffc313;
}

.testiThumb .star li {
    margin: 0 3px;
}

.testiThumb .userImg {
    margin-left: auto;
    margin-top: -3.5rem;
    display: block;
    border: 2px solid var(--theme-color);
    border-radius: 50%;
}

.slick-dots {
    bottom: -6rem;
}

.slick-dots li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 15px;
    width: 15px;
}

.slick-dots li button {
    border-radius: 50%;
    height: 15px;
    width: 15px;
    padding: 3px;
    border: 2px solid #707070;
    transition: 0.3s ease-in-out;
    background: var(--white);
}

.slick-dots li button:before {
    content: none;
    display: none;
}

.slick-dots li.slick-active button {
    transform: scale(1.5);
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

/* Footer */
footer {
    padding-top: 5rem;
    background-color: #191919;
}

footer .footerlogo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footerMenu {
    display: flex;
    gap: 1rem 1.5rem;
    justify-content: flex-end;
    align-items: center;
}

.footerMenu li a {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.5em 0.75em;
    border-radius: 35px;
}

.footerMenu li a:hover {
    background-color: var(--theme-blue);
}

.socialIo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.socialIo li a {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    color: var(--black);
    background-color: var(--white);
}

.socialIo li a:hover {
    color: var(--white);
    background-color: var(--theme-blue);
}

footer .contInfo {
    padding: 0;
    margin-top: 3rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .contInfo li a {
    font-weight: 400;
    color: var(--white);
    font-size: 1.125rem;
}

footer .contInfo li p {
    font-weight: 400;
    color: var(--white);
    font-size: 1.125rem;
}

footer .contInfo li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem 0;
    flex: 1;
    text-align: center;
}

footer .contInfo li strong {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
}

.copyRight {
    padding: 2rem 0;
    align-items: center;
    margin-top: 3rem;
    border-top: 1px solid rgb(112 112 112/50%);
}

.copyRight p {
    text-align: center;
    line-height: 1;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Inner pages css  */
.teamInner .teamCard {
    margin-bottom: 2.5rem;
}

.aboutInner p {
    line-height: 2.3;
}

.aboutInner .d-flex {
    gap: 2rem;
    margin-top: 2rem;
}

.aboutInner .aboutImg3 img {
    margin-top: -7rem;
}

.servicesInner .row + .row {
    margin-top: 4rem;
}

.servicesInner h3 {
    font-size: 1.875rem;
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
}

.servicesInner p {
    line-height: 3.3;
}

.testimonialInner .row + .row {
    margin-top: 4rem;
}

.contactInfoList {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.contactInfoList li a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.contactInfoList li a img {
    width: 45px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contactInfoList li a strong {
    font-size: 1.375rem;
    display: block;
    font-weight: 600;
}

.contactInner {
    padding-top: 6rem;
}

.contactInner .row {
    gap: 5rem 0;
}
.privacySec h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
}

.privacySec ul {
    list-style-type: disc;
    line-height: 2.5;
    list-style-position: inside;
}

.privacySec a {
    font-weight: 700;
    color: #000;
}
.serSec h2 {
    font-size: 3.125rem;
    text-align: center;
    text-transform: capitalize;
    font-weight: 400;
}
.serSec h4 {
    font-size: 2.625rem;
    font-weight: 600;
    text-transform: capitalize;
}

.serSec ul {
    font-size: 1.5rem;
    font-weight: 600;
    list-style-type: disc;
    list-style-position: inside;
    line-height: 2;
}
.serSec .row + .row {
    margin: 5rem 0;
}
.contInfo img {
    height: 70px;
}


.termPage {
    display: flex;
    justify-content: end;
    gap: 1rem;
    font-size: 1.1rem;
}

.termPage li a {
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
}