/* FONT IMPORT */


/* Google Font */

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

/* Local Font */


/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
    --white: #fff;
    --black: #000;
    --primary: #D12421;
    --secondary: #003D6E;
    --color-accent: #338C26;
    /* Font Variable */
    --font-text: "Poppins", sans-serif;
    --font-heading: "Montserrat", sans-serif;
}

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

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: var(--font-text);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: var(--font-heading);
}

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


/* Cursor Start */

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


/* Cursor End */


/* PRELOADER */

.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.black {
    background-color: var(--secondary);
    z-index: 11113;
}

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


/* PRELOADER */


/* GLOBAL CSS */

.btn {
    text-transform: uppercase;
    border-radius: 0.5rem;
}

.btn:focus {
    box-shadow: none;
}

.themeBtn {
    background: transparent;
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.75em 1.5em;
    line-height: normal;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 0.5rem;
}

.themeBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(180deg, var(--primary) 50%, var(--black) 50%);
    transition: 0.5s ease;
    z-index: -1;
}

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

.themeBtn:hover::before {
    top: -100px;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
}

.themeBtn.borderBtn::before {
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 50%;
}

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

.themeBtn.borderBtn:hover::before {
    top: -80px;
}

.heading {
    font-size: 3.75rem;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.subtitle {
    font-size: 1.375rem;
    display: inline-block;
    line-height: 1;
    text-transform: uppercase;
}


/* !GLOBAL 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  */


/* NAV HEADER CSS */

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    padding: 0.875rem 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
    transition: 0.3s ease-in-out;
}

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

.menubtn {
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 126px;
}

.menubtn .menu-icon {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.menubtn .menu-icon span {
    width: 2.75rem;
    height: 4px;
    background-color: #D4D4D4;
    border-radius: 4px;
    display: inline-block;
    transition: 0.5s ease;
}

.menubtn .menu-icon span:nth-child(2) {
    width: 2.75rem;
}

.menubtn .menu-icon span:nth-child(3) {
    width: 2.75rem;
}

.main-menu {
    position: fixed;
    top: calc(-100dvh - 1rem);
    left: 0;
    margin: 0;
    width: 100vw;
    height: 100dvh;
    background-color: var(--white);
    display: flex;
    align-items: center;
    z-index: 9;
    transition: 0.5s ease;
}

.main-menu::before,
.main-menu::after {
    content: '';
    position: absolute;
    left: 0;
    top: calc(-100dvh - 1rem);
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    transition: 0.6s ease;
    z-index: -2;
}

.main-menu::after {
    background-color: var(--secondary);
    transition: 0.7s ease;
}

.main-menu ul {
    display: flex;
    flex-wrap: wrap;
    max-height: 550px;
    gap: 2rem 0;
    overflow: hidden;
}

.main-menu li {
    width: 50%;
    opacity: 0;
    transform: translateY(50%);
    transition: 0.5s ease;
}

.main-menu li a {
    font-size: 2.25rem;
    color: var(--white);
}


/* MENU SHOW */

.menu-open .main-menu,
.menu-open .main-menu::before,
.menu-open .main-menu::after {
    top: 0;
}

.menu-open .main-menu li {
    opacity: 1;
    transform: translateY(0);
}

.menu-open .menubtn .menu-icon span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-open .menubtn .menu-icon span:nth-child(3) {
    width: 2.75rem;
    transform: rotate(45deg) translate(-15px, 0px);
}

.menu-open .menubtn .menu-icon span:nth-child(1) {
    transform: rotate(-45deg) translate(-15px, 0);
}

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


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    background: var(--secondary) url('../images/mainhero-img.jpg') center center/cover no-repeat fixed;
    height: 1080px;
}

.pagetitle {
    height: 625px;
    background: url(../images/aboutBanner.jpg)center/cover no-repeat;
}

.serviceBanner {
    background: url(../images/serviceBanner.jpg)center/cover no-repeat;
}

.mappingBanner {
    background: url(../images/mappingBanner.jpg)center/cover no-repeat;
}

.faqBanner {
    background: url(../images/faqBanner.jpg)center/cover no-repeat;
}

.contactBanner {
    background: url(../images/contactBanner.jpg)center/cover no-repeat;
}

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

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

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

.heroText h1 {
    margin: 0;
    color: var(--white);
    font-size: 3.75rem;
    line-height: 1.3;
    font-weight: bold;
    text-transform: uppercase;
}

.heroText p {
    color: var(--white);
    margin-top: 1rem;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.heroText .btn-grp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.125rem;
}


/* !MAIN HERO SLIDER CSS */


/* ABOUT SECTION */

.about-section {
    padding: 5.75rem 0;
}

.about-section .about-text {
    max-width: 875px;
}

.about-figure {
    max-width: 620px;
    overflow: hidden;
    border-radius: 1rem;
}

.aboutbtn {
    padding: 0.25rem 0;
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1.125rem;
    text-transform: capitalize;
    transition: 0.5s ease;
    border-radius: 3rem;
}

.aboutbtn i {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: grid;
    place-items: center;
}

.aboutbtn:hover {
    background-color: var(--primary);
    color: var(--white);
    padding-left: 1rem;
}

.aboutbtn:hover i {
    animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translatex(0px);
    }
    to {
        transform: translateX(-10px);
    }
}


/* !@ABOUT SECTION */


/* SERVICES SECTION */

.services-section {
    background-color: var(--primary);
    text-align: center;
}

.services-section .text {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.services-card {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease-in-out;
}

.services-card figure {
    border-radius: 1rem;
    overflow: hidden;
}

.services-card figure img {
    width: 100%;
    aspect-ratio: 4/4;
    object-fit: cover;
}

.services-card h4 {
    font-size: 1.625rem;
    color: var(--black);
    margin-bottom: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
}

.services-card .card-content {
    padding: 1rem;
    background: var(--white);
    position: absolute;
    bottom: -160px;
    left: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
}

.services-card:hover .card-content {
    background: var(--black);
    bottom: 0;
}

.services-card:hover .card-content :is(h4, ul li, p, .themeBtn){
    color: var(--white);
}

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

.services-card .card-content ul {
    height: 70px;
    overflow-y: overlay;
    margin-bottom: 0.75rem;
}

.services-card .card-content ul::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgb(255 255 255 / 90%);
	border-radius: 10px;
}
	
.services-card .card-content ul::-webkit-scrollbar {
	width: 6px;
	border-radius: 10px;
	background-color: #ff7474;
}
	
.services-card .card-content ul::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: var(--primary);		
}

.services-card .card-content ul li {
    color: var(--black);
    transition: all 0.5s ease-in-out;
    position: relative;
    width: fit-content;
    padding-left: 1.5rem;
    margin-bottom: 6px !important;
    text-align: left;
}

.services-card .card-content ul li::before {
    content: "";
    width: 14px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 0;
    background: var(--primary);
}

.services-card .card-content .themeBtn {
    padding: 0.5em 1.125em;
    color: var(--black);
    border-color: var(--black);
    margin: 0.5rem 0 0;
    transition: all 0.5s ease-in-out;
}

.services-card .card-content .themeBtn:hover {
    color: var(--black);
}

.services-card p {
    font-size: 1.125rem;
    color: var(--black);
    line-height: 1.78;
    margin-bottom: 1.875rem;
    transition: all 0.5s ease-in-out;
}


/* !@SERVICES SECTION */


/* HISTROY SECTION */

.history-section {
    padding: 5.375rem 0;
}

.list-items {
    border-left: 1px solid #D2D2D2;
    margin-left: -2.5rem;
    padding-left: 2.5rem;
}

.history-text h1 {
    color: var(--color-accent);
    font-size: 20rem;
    line-height: 0.9;
    font-weight: 700;
    font-family: var(--font-text);
    -webkit-text-stroke: 2px var(--color-accent);
    -webkit-text-fill-color: transparent;
    text-shadow: -1rem -0.5rem 0 var(--color-accent);
    user-select: none;
}

.history-text h4 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.history-text p {
    color: var(--black);
    font-size: 1.375rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 478px;
}

.list-items li {
    display: flex;
    align-items: center;
}

.list-items li+li {
    margin-top: 4.875rem;
}

.list-items li div {
    width: 50%;
}

.list-items li h3 {
    color: var(--color-accent);
    font-size: 6.25rem;
    font-weight: 500;
}

.list-items li h6 {
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1.26;
    margin-bottom: 0.5rem;
}

.list-items li p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
}


/* !2HISTROY SECTION */


/* CTA TEXT SECTION */

.ctatext-section {
    background-color: #F9F9F9;
    padding: 5.375rem 0 3.5rem;
}

.ctatext-section::after {
    content: '';
    position: absolute;
    top: 0rem;
    left: 0;
    bottom: 0;
    width: 49%;
    background-color: var(--black);
}

.ctatext-section figure {
    overflow: hidden;
}

.cta-text {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.cta-text p {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-text .aboutbtn {
    color: var(--white);
}

.cta-text .aboutbtn i {
    background-color: transparent;
    border: 1px solid var(--white);
}


/* !@CTA TEXT SECTION */


/* PROJECT SECTION */
.project-section {
    padding: 3.5rem 0 0.5rem;
    z-index: 1;
}

.project-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 51%;
    height: 100%;
    background-color: var(--secondary);
    z-index: -1;
}

.project-section .text {
    margin-bottom: 2.5rem;
}

.projectSlider {
    margin-right: -20.75rem;
}

.projectSlider .swiper-slide figure {
    overflow: hidden;
    user-select: none;
}

.projectSlider .swiper-slide figure a {
    display: flex;
}

.projectSlider .swiper-slide figure img {
    transform: scale(0.7);
    transform-origin: bottom left;
    transition: 1s ease;
}

.projectSlider .swiper-slide-active figure img {
    transform: scale(1.25);
}

.projectSlider .swiper-controlBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    gap: 1.125rem;
    margin-top: 1rem;
}

.projectSlider .swiper-button-prev,
.projectSlider .swiper-button-next {
    position: static;
    transform: translateY(0);
    margin: 0;
}

.projectSlider .swiper-button-prev {
    margin-left: 5rem;
}

.projectSlider .swiper-button-prev::after,
.projectSlider .swiper-button-next::after {
    font-size: 1.5rem;
    color: var(--white);
}

.projectSlider .swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    width: fit-content;
}

.projectSlider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white);
    opacity: 1;
    margin: 0 !important;
}

.projectSlider #indicators {
    font-size: 3.125rem;
    color: var(--white);
    position: absolute;
    top: 1.5rem;
    right: 36%;
    font-weight: 300;
    display: flex;
    align-items: center;
    user-select: none;
    z-index: 9;
}

.projectSlider #indicators .pagination-current {
    font-size: 7.5rem;
    margin-right: 0.875rem;
}


/* !@PROJECT SECTION */


/* FAQ SECTION */

.faq-section {
    background-color: var(--color-accent);
    padding: 6.375rem 0 18rem;
}

#faqsection .card,
#faqsection .card-header {
    background-color: transparent;
    border: 0;
    padding: 0;
}

#faqsection .card {
    margin-top: 3rem;
}

#faqsection .card-header .btn {
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    border-radius: 0;
    border-bottom: 4px solid var(--white);
    color: var(--white);
    font-size: 1.375rem;
    font-weight: 500;
    font-family: var(--font-heading);
}

#faqsection .card-header .btn::after {
    content: "\f068";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    float: right;
}

#faqsection .card-header .btn.collapsed::after {
    content: "\f067";
}

#faqsection .card-body {
    padding: 1.75rem 0;
}

#faqsection .card-body p {
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1.65;
    margin: 0;
}


/* !@FAQ SECTION */


/* INSTA SECTION */

.insta-section {
    padding: 4.625rem 0 1rem;
    text-align: center;
}

.instaslider {
    margin: 0 -16.625rem;
    margin-top: -1.5rem;
}

.instaslider .swiper-wrapper {
    align-items: center;
}

.instaslider figure {
    padding: 2rem 0;
    overflow: hidden;
}

.instaslider figure img {
    transform: scale(1.2);
    transition: 0.5s ease;
}

.instaslider figure a {
    display: inline-block;
}

.instaslider figure:hover a img {
    opacity: 0.75;
}

.instaslider .swiper-slide-prev figure img,
.instaslider .swiper-slide-next figure img,
.instaslider .swiper-slide-active figure img {
    transform: scale(1);
}

.instabtn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: -1.5rem;
}

.instabtn h6 {
    font-size: 1.375rem;
    margin: 0
}


/* !@INSTA SECTION */


/* FOOTER */

footer {
    background-color: var(--secondary);
    padding-top: 4.75rem;
}

footer .heading {
    color: var(--white);
    font-size: 5.25rem;
    margin-bottom: 2rem;
}

.footerForm .row {
    gap: 2.125rem 0;
}

.footerForm .form-control {
    padding: 1.125rem !important;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--white);
    border-radius: 0;
    color: var(--white);
}

.footerForm .form-control:focus {
    box-shadow: none;
}

.footerForm .form-control::placeholder {
    color: var(--white);
}

footer h3 {
    margin-top: 2rem;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.875rem;
    color: var(--white);
    text-transform: uppercase;
}

.quicklist li a {
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
}

.quicklist li+li {
    margin-top: 1rem;
}

.social-link {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 5rem;
}

.social-link a {
    font-size: 1.875rem;
    color: var(--white);
}

.copyRight {
    margin-top: 5.625rem;
    padding: 3.5rem 0;
    background-color: #00305C;
}

.copyRight p {
    color: var(--white);
    margin: 0;
}

.terms-list {
    display: flex;
    justify-content: end;
    gap: 1rem;
}

.terms-list li+li {
    padding-left: 1rem;
    border-left: 1px solid var(--white);
}

.terms-list li,
.terms-list li a {
    color: var(--white);
    line-height: 1;
    font-size: 1rem;
}


/* !@FOOTER */


/* Mapping */

.mapping {
    background: var(--black);
}

.mapping :is(.heading,
p) {
    color: var(--white);
}

.mapping__img {
    height: 715px;
}

.mapping__img img {
    object-fit: cover;
}


/* Projects */

.projects__img {
    height: 350px;
    object-fit: cover;
    padding: 0.75rem;
}

:is(.projects,
.faq-section) .pagination {
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

:is(.projects,
.faq-section) .page-link {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #00000060;
    border-radius: 0 !important;
}

.projects .page-item:first-child .page-link,
.projects .page-item:last-child .page-link {
    background: #337321;
    border: none;
    color: var(--white);
}

.projects .page-item:last-child .page-link {
    background-color: #D12421;
}

.faq-section .page-link {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}


/* services-inner */

.services-inner .row+.row {
    margin-top: 4.5rem;
}

.services-inner .row:nth-child(even) {
    flex-direction: row-reverse;
}

.services-inner__figure {
    position: relative;
    z-index: 1;
}

.services-inner__figure img {
    border-radius: 0.9375rem;
    height: 556px;
    object-fit: cover;
}

.services-inner__text {
    background-color: var(--color-accent);
    border-radius: 0.9375rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8.5rem 4.5rem 8.5rem 8rem;
    margin: 0 0 0 -8rem;
}

.services-inner .row:nth-child(even) .services-inner__text {
    background-color: var(--secondary);
    padding: 8.5rem 8rem 8.5rem 4.5rem;
    margin: 0 -8rem 0 0;
}

.services-inner__text .heading {
    font-size: 2.1875rem;
}

.services-inner__text :is(.heading,
p) {
    color: var(--white);
}


/* contact-section */

.bg-grey {
    background-color: #F6F6F6;
}

.contact-info__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 380px);
    place-content: center;
}

.contact-info__item .icon {
    width: 124px;
    aspect-ratio: 1;
    border: 1px dashed var(--white);
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 500;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
}

.contact-info__item:nth-child(2) .icon {
    background-color: var(--secondary);
}

.contact-info__item:nth-child(3) .icon {
    background-color: var(--primary);
}

.contact-info__item h6 {
    font-size: 1.375rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #101C2A;
}

.contact-info__item h6 span {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0.5rem auto 0;
    max-width: 320px;
}

.contact-form :is(input,
textarea) {
    display: block;
    width: 100%;
    background-color: var(--white);
    border: none;
    outline: none;
    resize: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--black);
    border-radius: 0.5rem;
}

.contact-form :is(input,
textarea)::placeholder {
    color: #8B93A8;
}

.contact-form .themeBtn {
    border-radius: 0.5rem;
    display: block;
}

.contact-form-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}