/* FONT IMPORT */


/* Google Font */

@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');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');

/* Local Font */

:root {
    --white: #fff;
    --black: #000;
    --primary: #FF69B3;
    --secondary: #0C1529;
}

html {
    overflow-x: clip; 
}

body {
    position: relative;
    background: #fff;
    overflow-x: clip;    
    font-family: "Poppins";
}

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

h1,
h2 {
    font-family: "Abril Fatface", serif;
}

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

.color--primary {
    color: var(--primary);
}

/* Dots Animation */
@keyframes dotsAnim {
    0% {
        transform: scale(1) rotate(-5deg);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(-5deg);
        opacity: 0.5;
    }
}

/* Cursor */
.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}

/* Preloader */
body.loading {
    overflow: hidden;
}

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

.preLoader .counter {
    color: var(--white);
    font-size: 16rem;
    font-weight: 600;
    letter-spacing: 8px;
    position: absolute;
    bottom: 2rem;
    right: 5rem;
}

.preLoader .counter span {
    font-family: var(--font-fredoka);
}

.preLoader .line {
    position: absolute;
    top: 80%;
    left: 0;
    width: 0;
    height: 5px;
    background-color: var(--white);
    opacity: 0.75;
}

.preLoader .bar {
    width: 20%;
    height: 100vh;
    background-color: var(--primary);
}

/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.063rem;
    color: var(--white);
    font-weight: 600;
    display: inline-block;
    padding: 1.188rem 2.1em;
    border-radius: 50px 0 50px 50px;
    line-height: normal;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.themeBtn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    content: "";
    background: var(--black);
    transition: 0.5s;
    z-index: -1;
}

.themeBtn .char {
    display: inline !important;
}

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

.themeBtn:hover:before {
    width: 100%;
}

.themeBtn--dark {
    background: var(--black);
}

.themeBtn--dark:hover:before {
    background: var(--primary);
}

.themeBtn--border {
    background: transparent;
    color: var(--black);
    border: 1px solid #E5E5E5;
}

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

/* !GLOBAL CSS */

/* SEARCH BAR CSS */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
    outline: unset;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}

/* !SEARCH BAR CSS */

/* Scroll Top */
.scroll-top {
    position: fixed;
    right: -5rem;
    bottom: 2rem;
    width: 2.75rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: var(--white);
    z-index: 99;
    transition: all 0.5s ease, right 1s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    box-shadow: 0 0 20px 5px #00000020;
}

.scroll-top.show {
    right: 2rem;
}

.scroll-top:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* Headings */
.secHeading {
    font-size: 3.125rem;
    color: var(--secondary);
    text-transform: capitalize;
    line-height: 1.3;
    overflow: hidden;
}

.smallHeading {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

:is(.secHeading) .char {
    display: inline !important;
}

/* NAV HEADER CSS */

.topBar {
    background: #2F0017;
    padding: 1.4rem 0;
}

.topList {
    display: flex;
    gap: 3rem;
}

.topList li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topList li a span {
    color: var(--white);
    font-weight: 500;
    transition: all 300ms ease-in-out;
}

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

.topList li a i {
    color: var(--primary);
    font-size: 1.125rem;
}

.topList li a span i {
    color: var(--white);
    font-size: 1rem;
}

.rightList {
    justify-content: end;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar {
    margin: 1rem 0;
}

.navbar-nav {
    align-items: center;
    gap: 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.063rem;
    color: #0C1529;
    font-weight: 600;
    padding: 0 0;
    display: inline-block;
}

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

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


/* !NAV HEADER CSS */


/* Main Sec Css Start */
.mainSec {
    height: 920px;
}

.mainSec .bannerImg {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mainSec .bannerImg::before {
    content: "";
    background: rgb(0 0 0 / 20%);
    position: absolute;
    inset: 0;
}

.mainContent h1 {
    color: var(--white);
    font-size: 4rem;
    text-transform: capitalize;
    line-height: 1.125;
}

.mainContent p {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--white);
    margin: 2rem 0;
}

.banImage {
    text-align: right;
    position: relative;
}

.banDots img {
    position: absolute;
    animation: dotsAnim 3s linear infinite alternate;
}

.dots1 {
    top: 24%;
    right: 1rem;
    z-index: -1;
}

.dots2 {
    bottom: 35%;
    left: 0.5rem;
    z-index: -1;
}

.emergencyBox span {
    color: var(--secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.emergencyBox a {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: bold;
}

.emergencyBox {
    background: var(--white);
    box-shadow: 0 40px 60px 0 rgb(37 59 112 / 10%);
    width: 250px;
    height: 100px;
    border-radius: 1.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -8rem;
    top: 36%;
}

.introVideo {
    background: var(--white);
    box-shadow: 0 40px 60px 0 rgb(37 59 112 / 10%);
    width: 200px;
    height: auto;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1.875rem;
    position: absolute;
    bottom: -3rem;
    left: 1.7rem;
}

.introVideo a {
    border: 8px solid #D8F2E9;
    width: 87px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 100%;
    color: var(--primary);
    font-size: 1.5rem;
    transition: 0.5s ease;
}

.introVideo:hover a {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.introVideo span {
    color: var(--secondary);
    font-weight: 500;
    font-size: 1.125rem;
    padding-top: 1.25rem;
}


/* Main Sec Css End */


/* Quote Sec Css Start */

.quoteSec {
    padding: 3.25rem 0 7.5rem 0;
}

.quoteForm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.quoteForm select,
.quoteForm .form-control {
    border: 1px solid #EDF3F3;
    border-radius: 50px;
    height: 64px;
    width: 210px;
    padding-left: 1rem;
    outline: unset;
    box-shadow: unset;
}

.quoteForm .form-control::placeholder {
    color: var(--black);
}

.quoteForm .form-control {
    background: var(--white);
    box-shadow: 0 30px 50px 0 rgb(0 0 0 / 8%);
}

.quoteForm select {
    font-size: 0.938;
    font-weight: 600;
    border-radius: 50px 0 50px 50px;
}

.quoteForm .themeBtn {
    border: unset;
    outline: unset;
    padding: 1.188rem 2.1em;
}


/* Quote Sec Css End */


/* About Sec Css Start */

.aboutSec {
    padding: 1rem 0 4rem 0;
}

.aboutImage {
    position: relative;
}

.aboutDots img {
    position: absolute;
    animation: dotsAnim 3s linear infinite alternate;
}

.about1 {
    top: -2.6rem;
    z-index: -1;
    left: -3.5rem;
}

.about2 {
    bottom: -2.5rem;
    right: 0;
    z-index: -1;
}

.yearBox h4 {
    font-size: 4.375rem;
    font-weight: bold;
    color: #AB3BF1;
    margin: 0;
}

.yearBox span {
    font-weight: 500;
    color: #222222;
}

.yearBox {
    background: var(--white);
    width: 230px;
    height: auto;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    position: absolute;
    bottom: -7.5rem;
    left: -6rem;
}

.aboutContent p {
    color: #808080;
    line-height: 1.75;
    margin: 1.2rem 0 1.5rem 0;
}

.aboutContent ul {
    margin-bottom: 2rem;
}

.aboutContent ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-flow: wrap;
}

.aboutContent ul li span {
    color: #848484;
    font-weight: 600;
}
.aboutImage {
    position: sticky;
    top: 0;
}

.aboutContent ul li i {
    color: var(--primary);
    font-size: 1.25rem;
}

.aboutContent ul li+li {
    margin-top: 0.625rem;
}


/* About Sec Css End */

/* Services */
.services__dots img {
    position: absolute;
    animation: dotsAnim 3s linear infinite alternate;
}

.services__dots img:nth-child(1) {
    top: 8rem;
    left: 17rem;
}

.services__dots img:nth-child(2) {
    bottom: 6rem;
    right: 17rem;
}
.serviceSlider .swiper-pagination-bullet {opacity:1;    width: 10px;
    height: 10px;}
.serviceSlider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary);
}

.services-card {
    text-align: center;
}

.services-card__img {
    width: 200px;
    aspect-ratio: 1;
    margin: 0 auto 1rem;
    border-radius: 1.875rem;
    overflow: hidden;
}

.services-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 300ms ease-in-out;
}

.services-card__icon {
    width: 60px;
    aspect-ratio: 1;
    background: #F9F3FF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: relative;
    margin: -2rem 0 1rem;
    z-index: 1;
}

.services-card__content .title {
    font-size: 1.325rem;
    font-weight: 600;
    margin: 0 auto 1rem;
    max-width: 240px;
}

.services-card__content p {
    font-size: 1.25rem;
    font-weight: 400;
    color: #808080;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.services-card:hover .services-card__img img {
    transform: scale(1.1);
}

.services__btn {
    margin-top: 6rem;
}

/* Video */
.video-card {
    width: 100%;
    height: 500px;
    border-radius: 2rem;
    overflow: hidden;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card__playBtn {
    width: 80px;
    aspect-ratio: 1;
    font-size: 1.75rem;
    color: var(--white);
    background: var(--primary);
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    animation: playBtn 2s linear infinite alternate;
}

@keyframes playBtn {
    0% {
        box-shadow: 0 0 0 5px #FF69B370, 0 0 0 10px #FF69B350;
    }

    50% {
        box-shadow: 0 0 0 10px #FF69B370, 0 0 0 20px #FF69B350;
    }

    100% {
        box-shadow: 0 0 0 5px #FF69B370, 0 0 0 10px #FF69B350;
    }
}

/* Why Choose Us */
.aboutSec--whyChoose {
    padding: 5rem 0;
}

.aboutSec__list li a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 30px 50px 0 #253B7010;
    border-radius: 2rem;
    padding: 2rem;
    margin-bottom: 0.5rem;
}

.aboutSec__list li a>figure {
    width: 80px;
    aspect-ratio: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #F5ECFF;
    border-radius: 100%;
    flex-shrink: 0;
}

.aboutSec__list li a>figure img {
    width: 40px;
    object-fit: contain;
}

.aboutSec__list li a>div .title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}

.aboutSec__list li a>div p {
    width: 100%;
    margin: 0;
}

.aboutSec__list li a:hover {
    background: var(--primary);
}

.aboutSec__list li a:hover :is(.title, p) {
    color: var(--white);
}

.aboutImage__icon {
    width: 70px;
    aspect-ratio: 1;
    position: absolute;
    border-radius: 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    z-index: 1;
    color: var(--white);
    font-size: 1.5rem;
}

.aboutImage__icon--envelope {
    bottom: 7rem;
    right: 0;
    background: #A020F0;
}

.aboutImage__icon--mobile {
    bottom: -2rem;
    left: 11rem;
}

.aboutImage__icon:hover {
    background: var(--black);
    color: var(--white);
}

.aboutSec--whyChoose .yearBox {
    bottom: auto;
    top: 7rem;
    gap: 1rem;
    padding: 2rem 1rem;
}

.aboutSec--whyChoose .yearBox .themeBtn {
    padding: 0.5rem 1.75rem;
}

/* Testimonials */
.testimonial__content {
    text-align: center;
    margin-top: 2rem;
}

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

.testimonial__contentImg img {
    aspect-ratio: 1;
    border-radius: 100%;
    margin: 0 -0.5rem;
}

.testimonial__contentImg img:is(:nth-child(1), :nth-child(3)) {
    width: 90px;
}

.testimonial__contentImg img:nth-child(2) {
    width: 120px;
}

.testimonial__contentStar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
}

.testimonial__contentStar i {
    font-size: 1.25rem;
    color: #FFAB01;
}

.testimonial__content p {
    font-size: 1.125rem;
    line-height: 1.75;
}

.testimonial__content h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

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

/* Experience */
.experience {
    background: url(../images/experience-bg.png) no-repeat bottom center/cover;
}

.experience::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 80%;
}

.experience-card {
    width: 100%;
    height: 150px;
    background: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 1.25rem;
}

.experience-card h4 {
    font-size: 2.75rem;
    font-weight: bold;
    color: var(--primary);
}

.experience-card h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0C1529;
}

/* Article */
.article-card__img {
    width: 100%;
    height: 285px;
    border-radius: 1.25rem;
    overflow: hidden;
}

.article-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 300ms ease-in-out;
}

.article-card__content h4 {
    width: fit-content;
    color: var(--white);
    background: var(--primary);
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    margin: 1rem 0;
}

.article-card__content h5 {
    font-size: 1.5rem;
    font-weight: 600;
}

.article-card__content h6 {
    color: #808080;
    text-transform: capitalize;
}

.article-card__content h6 span {
    color: #061A3A;
    font-weight: 600;
}

.article-card__content p {
    color: #808080;
}

.article-card:hover .article-card__img img {
    transform: scale(1.1);
}

/* NewsLetter */
.newsLetter__dots img {
    position: absolute;
    top: 2rem;
    left: 10rem;
    animation: dotsAnim 3s linear infinite alternate;
}

.newsLetter__dots img:nth-child(2) {
    top: 5rem;
    left: auto;
    right: 10rem;
}

.newsLetter__content .secHeading {
    font-size: 2.5rem;
    margin: 0;
}

.newsLetter__form {
    display: flex;
}

.newsLetter__form input {
    width: 70%;
    border: none;
    outline: none;
    padding: 1rem 0 1rem 1.5rem;
    background: #FFF0F7;
    border-radius: 100px 0 0 100px;
}

.newsLetter__form button {
    width: 150px;
    border: none;
    border-radius: 0 0 30px 0px;
    padding: 1rem 2em;
}

/* Footer */
.footer-main {
    background: var(--secondary);
    padding: 5rem 0 7rem;
}

.footer-main__content h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.footer-main__content :is(p, ul li :is(a, address)) {
    color: var(--white);
}

.footer-main__content p {
    margin-bottom: 2rem;
}

.footer-main__content ul li :is(a, address) {
    display: block;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    margin-bottom: 0.75rem;
}

.footer-main__content ul li :is(a, address):hover {
    color: var(--primary);
}

.footer-copyRight {
    background: #0A1123;
    padding: 1rem 0;
}

.footer-copyRight__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyRight__contentLogo img {
    width: 77px;
}

.footer-copyRight__contentIcons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-copyRight__contentIcons li a {
    width: 45px;
    aspect-ratio: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #1E2535;
    color: var(--white);
    border-radius: 0.25rem;
}

.footer-copyRight__contentIcons li a:hover {
    background: var(--primary);
}

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

.footer-copyRight__contentLinks li a {
    color: var(--white);
}

.footer-copyRight__contentLinks li:first-child {
    border-right: 1px solid var(--white);
    padding-right: 1rem;
}

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

.aboutpage {
    padding-bottom: 8rem;
}

.servciepagectnt h3 {
    font-size: 22px;
    font-weight: 600;
    color: #061A3A;
}

.dots-page {
    position: absolute;
    right: 5rem;
    top: 0;
}

.servciepagectnt p {
    font-size: 1rem;
    color: #808080;
    line-height: 1.75;
    width: 91%;
}

.servicepage h2 {
    font-size: 50px;
    text-align: center;
    margin-bottom: 3rem;
}

.servicepage .row+.row {
    margin-top: 5rem;
}



.bgicon {
    background: #F9F3FF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}


section.blog-section h2 {
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
}

.blogcontent h3 {
    font-size: 24px;
    font-weight: bold;
}

.blogcontent h4 {
    font-size: 14px;
    color: #808080;
    font-weight: 400;
}

.blogcontent p {
    font-size: 14px;
    color: #808080;
    line-height: 2;
}

.blogcontent h4 span {
    color: #061A3A;
    font-size: 1rem;
    font-weight: 500;
}

.blog-section .row+.row {
    margin-top: 3rem;
}


/* Contact Sec Css Start */

.contactSec {
    padding: 5rem 0 7rem 0;
}

.contactHead p {
    color: #000;
    font-size: 1rem;
}

.contactForm .form-group .form-control {
    border: 1px solid #BEBEBE;
    height: 50px;
    border-radius: 10px;
    padding-left: 1.5rem;
}

.contactForm .form-group .form-control::placeholder {
    font-weight: 400;
    color: #828282;
}

.contactForm .form-group textarea {
    height: 200px !important;
    padding-top: 1.5rem;
}

.contactForm .form-group {
    margin-bottom: 1.5rem;
}

.contactBox figure {
    color: #000;
    font-size: 1.5rem;
}

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

.contactBox a {
    color: #000;
    font-size: 1.125rem;
    font-weight: 500;
}



.contactBox+.contactBox {
    padding-top: 2rem;

    margin-top: 1rem;
    width: 90%;
}

.contactImg {
    position: absolute;
    right: -6rem;
    bottom: 0;
    width: 28%;
}

h2.mainHead {
    font-size: 36px;
    font-weight: 400;
    text-transform: capitalize;
}

form.contactForm {
    padding: 50px 38px;
    border: 1px solid #BDBDBD;
    border-radius: 10px;
}

.viewWork button.themeBtn {
    width: 100%;
    border: 2px solid #0A74FF !important;
    background: unset;
    color: #000;
    font-size: 1.125rem;
    border-radius: 46px;
}

/* Contact Sec Css End */

.services-card-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.services {
    padding-bottom: 0;
}

.services-card-wrapper .services-card__icon {
    margin: 0;
}

.services-card-wrapper .services-card__content {
    text-align: start;
}

.serviceSlider {
    padding-bottom: 6rem;
}

.services-card-wrapper .services-card__content .title {
    margin: 0 0 0.25rem;
}

.services-card-wrapper .services-card__content a {
    font-size: 1.125rem;
    color: #061A3A;
}

.service-main {gap: 2rem 0;}

.innerbanner .mainContent h1 {
    color: var(--black);    
}

.service-sec-heading {
    font-size: 2.5rem;
}
