@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #0c609f;
    --secondary: #040041;
}

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

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

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

/* How to add New font */
@font-face {
    font-family: "Font futura";
    src: url("../fonts/futura\ medium\ bt.ttf");
}


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

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3 {
    font-family: "Font futura";
}

h4,
h5,
h6 {
    color: #000;
}

.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;
}

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

figure {
    margin: 0;
}

/* loader */
.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader>img {
    width: 300px;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--theme-color);
}

/* loader */

/* btn css */

.themeBtn {
    background: var(--secondary);
    font-size: 18px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 12px 21px;
    border-radius: 7px;
    line-height: normal;
}

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

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}

/* btn css */

/* mouse animation css  */

/* .bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}
@keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
} */

/* mouse animation css  */

/* navigation css */

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    width: 250px;
    filter: brightness(0) invert(1);
}

.navbar-brand>img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
}

.navbar-nav {
    align-items: center;
    /* width: 100%; */
    gap: 3rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 18px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}


.an-navbar {
    background: var(--theme-color);
    padding: 1.35rem 0;
}

/* navigation css */

/* slider css */

.main-slider {
    height: 100vh;
    overflow: hidden;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 55px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
}

.main-slider p {
    color: var(--white);
    font-weight: 400;
    line-height: 1.2;
    margin-top: 1rem;
    font-size: 18px;
}

/* slider css */
.subimage .orange1 {
    position: absolute;
    bottom: -7rem;
    left: -11rem;
    filter: brightness(0) saturate(100%) invert(17%) sepia(67%) saturate(3689%) hue-rotate(192deg) brightness(103%) contrast(91%);
}

.subimage .grey1 {
    position: absolute;
    right: -5rem;
    top: 8rem;
}


.subHead {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary);
}

.mainHead {
    font-size: 50px;

    text-transform: uppercase;
    color: #000;
}


/* aboutsec css start */
.aboutSection {
    background: url(../images/aboutbg.png) center/cover no-repeat;

}

.aboutSection p {
    color: #8D8D8D;
}

.aboutSection ul {
    display: flex;
    margin: 11px 0;
}

.aboutSection ul li {
    font-size: 24px;
    margin-left: 1rem;
    font-family: 'Font futura';
}

.aboutSection ul li img {
    margin-right: 10px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(67%) saturate(3689%) hue-rotate(192deg) brightness(103%) contrast(91%);
}


.aboutSection figure {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

img.img-fluid.abt3 {
    position: absolute;
    right: -2rem;
    top: 5rem;
}


.iconplay i {
    position: absolute;
    top: 8.5rem;
    right: 1.5rem;
    color: #fff;
    font-size: 1.3rem;
}

/* aboutsec css end */


/* services css start*/
.ourServices {
    background: url(../images/servicebg.png) center/cover no-repeat;
}

section.ourServices .subHead {
    text-align: center;
    color: #fff;
}

section.ourServices .mainHead {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.servicecntnt h4 {
    font-size: 35px;
    margin-top: 1rem;
    font-family: 'Font futura';
    text-transform: capitalize;
}


.servicecntnt {
    background: #fff;
    padding: 10px 20px;
}

.serwrap img {
    width: 100%;
}

.servicecntnt a i {
    background: var(--secondary);
    color: #fff;
    font-size: 1rem;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-left: auto;
}

.servicecntnt a i:hover {
    background-color: var(--primary);

}

/* services css end */


/* ourteam css start */


.teamcntnt h3 {
    font-size: 36px;
    margin-top: 5rem;
}

.teamcntnt h5 {
    font-size: 24px;
    color: var(--secondary);
}


.teamSlider {
    padding: 3rem 0;
}

.teamwrap {
    text-align: center;
}

.teamicon ul li a i {
    background: #fff;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--secondary);
    border-radius: 50%;
}

.teamicon ul li:nth-child(2) {
    transform: translateX(1rem);
}


.teamwrap figure {
    position: relative;
}

.teamwrap figure::before {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, #85B62E, rgb(255 255 255 / 0%));
    width: 347px;
    height: 348px;
    border-radius: 50%;
    z-index: -1;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}

.teamicon {
    position: absolute;
    top: 3rem;
    right: 4rem;
}

.teamicon ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}


.teamSlider .swiper-slide-active .teamwrap figure::before {
    background: linear-gradient(180deg, #EA357C, rgb(255 255 255 / 0%));
}

.teamSlider .swiper-slide-active .teamcntnt h5 {
    color: var(--primary);
}

.teamSlider .swiper-slide-active .teamicon ul li a i {
    color: var(--primary);
}


.teamSlider .swiper-pagination-bullet {
    transform: scale(1.2);
    background-color: var(--secondary);
    margin-left: 8px !important;
    margin-right: 8x !important;
}

.teamSlider .swiper-pagination-bullet-active {
    transform: scale(2.2);
    background-color: var(--secondary);
    opacity: 1;
}

.subimage .grey11 {
    position: absolute;
    right: -5rem;
    top: -6rem;
    z-index: -1;
}

/* ourteam css end */

/* workingsec css start */

.workingSec {
    background: url(../images/workingbg.png) center/cover no-repeat;
}


section.workingSec .subHead {
    color: #fff;
}

section.workingSec .mainHead {
    color: #fff;
    margin-bottom: 4rem;
}

.workingcntnt a {
    font-size: 18px;
    color: #fff;
    background: var(--primary);
    border-radius: 30px;
    padding: 13px 27px;
    display: inline-block;
    transform: translateY(-1.8rem);
}

.workingcntnt h3 {
    font-size: 30px;
    color: #000;
    margin-top: -16px;
}

.workingcntnt p {
    font-size: 1rem;
}

.workingcntnt {
    text-align: center;
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 30px;
    padding: 3px 45px;
}

/* workingsec css end */


/* testimonals css start */
.star i {
    color: #F5AA20;
}

.tetsiwrap p {
    font-size: 18px;
}

.cntnt {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.usercntnt h3 {
    font-size: 28px;
}

.usercntnt p {
    font-size: 1rem;
    color: var(--secondary);
    margin-top: -1rem;
}

.tetsiwrap {
    border: 1px solid #E8E8E8;
    border-radius: 50px 0 0 0;
    padding: 1rem;
    box-shadow: 12px 12px 12px rgb(0 0 0 / 16%);
}


.testimonialSlider .swiper-pagination-bullet {
    transform: scale(1.2);
    background-color: var(--primary);
    margin-left: 8px !important;
    margin-right: 8x !important;
}

.testimonialSlider .swiper-pagination-bullet-active {
    transform: scale(2.2);
    background-color: var(--primary);
    opacity: 1;
}

.testimonialSlider {
    padding: 0 0.5rem 5rem;
}

.subimage .grey22 {
    position: absolute;
    right: -5rem;
    top: -6rem;
    z-index: -1;
}

/* testimonals css end */


/* bolgscetion css :start */
.blogsection {
    background: url(../images/blogbg.png) center/cover no-repeat;
}

.blogwrap {
    padding-bottom: 5rem;
}

.blogcntnt h4 {
    font-size: 28px;
    margin-top: 1rem;
}

.blogcntnt h5 {
    font-size: 1rem;
    color: var(--primary);
}

.blogcntnt p {
    color: #828282;
    margin-bottom: 0;
}

.blogcntnt a {
    color: #85B62E;
    text-decoration: underline !important;
    font-size: 17px;
}


.blogSlider .swiper-pagination-bullet {
    transform: scale(1.2);
    background-color: var(--primary);
    margin-left: 8px !important;
    margin-right: 8x !important;
}

.blogSlider .swiper-pagination-bullet-active {
    transform: scale(2.2);
    background-color: var(--primary);
    opacity: 1;
}

.blogSlider {
    padding: 1rem 0 3rem 0;
}

/* bolgscetion css :end */


/* Newsletter Sec Css Start */

.newsletterSec {
    background: url(../images/newsBg.png) center/cover no-repeat;
}


.newsLeft {
    position: absolute;
    bottom: 0;
    left: 0;
}

section.newsletterSec .mainHead {
    color: #fff;
    font-size: 55px;
    text-transform: capitalize;
}


section.newsletterSec p {
    font-size: 18px;
    color: #8D8D8D;
}

section.newsletterSec .themeBtn {
    background: var(--primary);
}

/* Newsletter Sec Css End */


/* Footer Css Start */

footer {
    background-color: var(--white);
    padding-top: 3rem;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
}

.links li a {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
}

footer p.desc {
    font-size: 1.125rem;
    color: var(--white);
}

footer .socialIo {
    display: flex;
    gap: 1rem;
}

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

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

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

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

footer .contInfo li img {
    filter: brightness(0) saturate(100%) invert(17%) sepia(67%) saturate(3689%) hue-rotate(192deg) brightness(103%) contrast(91%);
}

footer .contInfo li strong {
    font-size: 22px;
    color: var(--black);
    font-weight: 500;
}

footer .contInfo li a {
    font-weight: 400;
    color: var(--black);
    font-size: 18px;
}

.copyRight p {
    font-size: 1rem;
    color: var(--black);
    padding: 1.125rem 0;
    margin: 0;
}

.copyRight {
    border-top: 1px solid #707070;
    margin-top: 3rem;
}


/* Footer Css End */


.tetsiwrap {
    height: 100%;
    margin: 0;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--secondary);
}

.links li a:hover {
    color: var(--primary);
}


/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 60px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.innerBan {
    position: relative;
}

.servicecntnt1 {
    background: #FFFFFF;
    padding: 2.2rem 2.5rem;
    position: relative;
    z-index: 1;
    height: 490px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.leftMargin {
    margin-left: -9rem;
}

.rightMargin {
    margin-right: -7rem;
}

.aboutSection.serviceinner {
    background: unset;
}


.aboutSection.aboutinner {
    background: unset;
}


.teamicon.innteam {

    right: 14rem;
}

.ourTeam.teaminnersec .teamcntnt h3 {
    font-size: 58px;
    margin-top: 0;
    font-family: 'Font futura';
}

.ourTeam.teaminnersec .row {
    margin-bottom: 6rem;
}


.teamwrap.teampink figure::before {
    background: linear-gradient(180deg, #EA357C, rgb(255 255 255 / 0%));
}

.teamicon.pinkitem ul li a i {
    color: var(--primary);
}


.teamcntnt.pinkcntnt h5 {
    color: var(--primary);
}

.tetsiwrap.testiwrap2 {
    border-radius: 0 0 50px 0;
}


.blogsection.bloginnersec {
    background: unset;
}


.contactBox {
    text-align: center;
}

.contactBox figure {
    background: var(--white);
    box-shadow: 0 3px 15px rgb(0 0 0 / 6%);
    width: 250px;
    height: 250px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin: auto;
    transition: 0.5s ease-in-out;
}

.contactBox:hover figure {
    box-shadow: 0 3px 32px rgb(0 0 0 / 22%);
}

.contactBox:hover .contactText a {
    font-weight: 600;
}

.contactBox:hover .contactText p {
    font-weight: 600;
}

.contactText {
    padding-top: 2rem;
}

.contactText p {
    font-size: 22px;
    color: #000000;
}

.contactText a {
    font-size: 22px;
    color: var(--black);
    font-weight: 500;
}

.contactForm .form-group label {
    font-size: 1.375rem;
    color: var(--black);
    font-family: 'futuraMed';
}

.contactForm .form-group .form-control {
    border-radius: 6px;
    height: 65px;
    border: 1px solid #C0C0C0;
}

.contactForm .form-group textarea {
    min-height: 155px;
}

.contactForm .form-group .form-control::placeholder {
    color: #7C7C7C;
}

.contactForm .form-group textarea::placeholder {
    padding-top: 8px;
}

.contactForm .themeBtn {
    border: unset;
}

.contactText h3 {
    font-size: 25px;
    text-transform: uppercase;
    font-family: 'Font futura';
}


.teaminnersec .teamwrap {
    text-align: left;
    /* display: inline-block; */
}

.teaminnersec .teamwrap figure {
    display: block;
    text-align: center;
}

.teaminnersec .teamwrap figure:before {
    width: 100%;
    height: 550px;
}

.teaminnersec .teamwrap figure img {
    width: 72%;
}

.teaminnersec .teamwrap .teamicon.innteam {
    right: 5.5rem;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.teaminnersec .teamwrap .teamicon.innteam ul li a i {
    width: 71px;
    height: 71px;
    font-size: 2rem;
}

.teaminnersec .teamwrap .teamicon.innteam ul {
    gap: 2.5rem;
}

.ourTeam.teaminnersec.aos-init.aos-animate {
    padding: 9rem 0 2rem 0;
}


.ourTeam.teaminnersec .row {
    margin-bottom: 13rem;
}

.testimonialsSec.innertestimonials .row {
    gap: 2rem 0;
}