/* 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&family=Syne:wght@400..800&display=swap');

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

:root {
    --white: #fff;
    --black: #000;
    --primary: #ff0000;
    --secondary: #333333;
}

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

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

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

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

h1,
h2,
h3 {
    font-family: "Syne", sans-serif;
}

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(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: #0A2342;
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1.04em 1.96em;
    border-radius: 7px;
    line-height: normal;
}

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

.heading {}

.subtitle {}

/* !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 {
    background: #0A2342;
    padding: 23px 0;
    border-bottom: 1px solid #fff;
    transition: 0.3s ease-in-out;
}

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

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

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: bold;
    padding: 0 0;
    display: inline-block;
    font-family: "Syne", sans-serif;
}

/* Dropdown */
.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down>a:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding-left: 5px;
    color: var(--white);
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    position: relative;
    min-width: 250px;
}

.navbar .drop-down ul a {
    padding: .75em 1.125em;
    font-size: 1rem;
    font-weight: 500;
    color: #151515;
    display: block;
}

.navbar .drop-down ul a:hover {
    background: #0A2342;
    color: #fff;
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 740px;
    /* width: 90%; */
    /* margin: auto; */
}

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

.main-slider .swiper-pagination-bullet {
    background: transparent;
    font-size: 1rem;
    color: #ffffff69;
    opacity: 1;
    width: auto;
    height: auto;
    font-weight: 500;
    border-radius: 0;
    padding: 0 9px;
    height: 32px;
    display: flex;
    align-items: center;
}

.main-slider .swiper-pagination {
    bottom: -3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 6rem;
    width: auto;
}

.main-slider .swiper-pagination-bullet-active {
    font-size: 1rem;
    color: #fff;
}

.homeSlider .slide-inner {
    width: 90%;
    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;
    right: 0;
    margin: auto;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 4.375rem;
    line-height: 1.14;
    font-weight: bold;
    text-transform: inherit;
}

.main-slider p {
    color: var(--white);
    font-weight: 400;
    line-height: 1.7;
    font-size: 1.25rem;
    margin-top: 1rem;
    /*margin-left: 22rem;*/
}

.main-slider:before {
    content: "";
    background: #0A2342;
    position: absolute;
    width: 100%;
    height: 860px;
    top: 0;
}

/* !MAIN HERO SLIDER CSS */

.mainHead {
    font-size: 3.5625rem;
    font-weight: bold;
    color: #0F0F0F;
}

.subHead {
    font-size: 12px;
    font-weight: bold;
    color: #0F0F0F;
    text-transform: uppercase;
}


/* about-section */
.about-head {
    text-align: center;
    margin-bottom: 3rem;
}

.about-section {
    padding-top: 13rem;
}

.about-cntnt h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 40px 0;
}

.about-cntnt a {
    color: #0F0F0F;
}

.about-wrap {
    border-left: 1px solid #E7E7E7;
    padding-left: 50px;
}

/* about-section */

/* creative-section */
.creative-section {
    padding: 3rem 0;
}

.creative-img2 img {
    width: 100%;
}

figure.creativeleftimg1 {
    text-align: end;
}

img.img-fluid.creative-logo {
    position: absolute;
    left: 9rem;
    bottom: 34%;
}

.creative-left {
    margin-bottom: 5rem;
}

.creative-right p {
    font-size: 15px;
    font-weight: 400;
    color: #6A6E71;
    line-height: 1.8;
}

.creative-right {
    margin-top: 76px;
}

.creative-right a {
    font-size: 15px;
    color: #0F0F0F;
    font-family: 'Syne';
    font-weight: bold;
}

/* creative-section */


/* trending-section */
.trending-section {
    background: #0A2342;
}

.trending-top p {
    color: #D2D3D5;
    font-size: 15px;
    margin: 0;
}

.trending-section .mainHead {
    margin: 0;
}

.trendingBox figure img {
    height: 412px;
    object-fit: cover;
    width: 100%;
}

.trendingSlider {
    margin-right: -47rem;
    margin-top: 4rem;
}

ul.trending-logo {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-top: 70px;
}

ul.trending-logo li h3 {
    color: #fff;
    font-family: 'Syne';
    font-size: 2.1875rem;
    font-weight: bold;
    text-align: end;
}

/* trending-section */


/* design-service */
.stylish22 {
    position: absolute;
    bottom: -2rem;
    left: -4rem;
}

.stylish11 {
    position: absolute;
    top: 8rem;
    z-index: 1;
    left: -9rem;
}

ul.design-counter {
    display: flex;
    align-items: center;
    gap: 2rem;
}

ul.design-counter li span {
    display: block;
    font-size: 3.375rem;
    font-weight: bold;
    font-family: 'Syne';
}

ul.design-counter li {
    font-size: 1.1875rem;
    font-weight: bold;
    font-family: 'Syne';
}

.design-service-cntnt p {
    font-size: 15px;
    font-weight: 400;
    color: #6A6E71;
}

/* design-service */


/* brand-section */
.brand-book {
    background: url(../images/persnoalbg.png)center/cover no-repeat;
}

.brandWraps p {
    font-size: 15px;
    font-weight: 400;
    color: #D2D3D5;
    width: 76%;
}

figure.brandimg11 {
    margin-left: -20rem;
    margin-top: -12rem;
}


.design-service {
    padding-bottom: 14rem;
}

.brandcntnt .mainHead {
    font-size: 2.9375rem;
}


a.playbtn i {
    width: 70px;
    height: 70px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
}

.brandSlider .swiper-button-next {
    right: 21rem;
}

.brandSlider .swiper-button-prev {
    left: 4rem;
}

.brandSlider .swiper-button-next,
.brandSlider .swiper-button-prev {
    border: 1px solid #292929;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    color: var(--white);
    background: transparent;
    transition: 0.5s ease-in-out;
    font-size: 1rem;
    top: 22rem;
}

.brandSlider .swiper-button-next:hover,
.brandSlider .swiper-button-prev:hover {
    background: var(--secondary);
    color: #fff;
}

.brandSlider .swiper-button-prev::after {

    content: '\f104';
    font-family: 'Font Awesome 5 Pro';
    font-size: 1rem;
}

.brandSlider .swiper-button-next::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-size: 1rem;
}

.swiper.brandSlider {
    padding-bottom: 6rem;
}

/* brand-section */


/* articels-section */
.blogleft h4 {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Syne';
    margin-top: 24px;
}

.blogleft h4 span {
    font-weight: 400;
    text-transform: capitalize;
    font-family: 'Poppins';
    color: #A5A6AA;
}

.blogleft h5 {
    font-size: 2.1875rem;
    font-weight: bold;
    font-family: 'Syne';
    color: #0F0F0F;
}

.blogright h4 {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Syne';
}

.blogright h4 span {
    font-weight: 400;
    text-transform: capitalize;
    font-family: 'Poppins';
    color: #A5A6AA;
}

.blogright h5 {
    font-size: 2.1875rem;
    font-weight: bold;
    font-family: 'Syne';
    color: #0F0F0F;
}

.blogright p {
    font-size: 15px;
    font-weight: 400;
    color: #6A6E71;
    margin-bottom: 7rem;
}

.blogleft .mainHead {
    margin-bottom: 3rem;
}

.blogright figure {
    padding-top: 7rem;
}

.blogrightbtm {
    margin-top: 1rem;
}

.blogright {
    margin-bottom: -10rem;
}

.blog-section {
    padding-bottom: 10rem;
}

/* articels-section */


/* Footer Sec Css Start */

footer {
    background-color: #0A2342;
    padding-top: 6rem;
}

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

footer ul li a:hover {
    color: #2c7bdc;
}

footer h3 {
    font-size: 1.1875rem;
    text-transform: capitalize;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: bold;
}

.links li a {
    font-size: 15px;
    text-transform: capitalize;
    color: #fff;
}

.links li+li {
    padding-top: 4px;
}

.contactLinks li+li {
    padding-top: 1rem;
}

.contactLinks li a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    color: #D2D3D5;
}

footer p {
    font-size: 0.8125rem;
    color: var(--white);
}

.footForm input {
    border-top: unset;
    border-left: unset;
    border-right: unset;
    border-radius: unset;
    background: transparent;
    border-bottom: 1px solid var(--white);
    padding: 0;
    height: 40px;
    margin-bottom: 25px;
}

.footForm input::placeholder {
    font-size: 15px;
    color: #D2D3D5;
}

.footForm {
    display: flex;
    align-items: center;
    position: relative;
}

.footForm i {
    color: var(--white);
    position: absolute;
    right: 0;
    font-size: 1rem;
    bottom: 2rem;
}

.cartWraps p {
    font-size: 15px;
    margin: 0;
    text-align: center;
}

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

.contactLinks li a span {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    font-family: 'Syne';
}

.links li+li {
    margin-top: 10px;
}

.footer-top h3 {
    font-size: 3.5625rem;
    font-weight: bold;
    text-transform: inherit;
}

a.themeBtn.ftbtn {
    background: #000;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Syne';
    padding: 17px 20px;
}

li.undlinelist a {
    text-decoration: underline !important;

}


.helpForm.form-check label {
    color: #888A8D;
    font-size: 14px;
}

.helpForm.form-check label span {
    color: #fff;
    text-decoration: underline !important;
}


/* Footer Sec Css End */


a.scroldown {
    position: absolute;
    bottom: -3rem;
    right: 6rem;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Syne';
    font-weight: bold;
}

a.themeBtn.ftbtn:hover {
    background: #fff;
    color: #000;
}


.navbar-nav .nav-item .nav-link:hover {
    color: #2c7bdc;
}


/* 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: 4.375rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 400;
}

.innerBan {
    position: relative;
    text-align: center;
}

.innerBan .overlay::before {
    content: "";
    background: #0A2342;
    position: absolute;
    width: 100%;
    height: 750px;
    top: 0;
    z-index: -1;
}

section.about-page {
    padding-top: 13rem;
}

.aboutpagecntnt p {
    font-size: 15px;
    font-weight: 400;
    color: #6A6E71;
    line-height: 1.8;
}

section.about-page img {
    width: 100%;
}

section.project-page {
    padding-top: 12rem;
}

.project-img {
    margin-bottom: 41px;
}

.project-img img {
    width: 100%;
    height: 606px;
    object-fit: cover;
}

.projecttop {
    margin-bottom: 60px;
}

.service-page {
    padding-top: 12rem;
}

.service-pagecntnt h3 {
    font-size: 2.25rem;
    font-weight: bold;
}

.service-pagecntnt p {
    font-size: 15px;
    font-weight: 400;
    color: #6A6E71;
    line-height: 1.8;
}

.service-pagecntnt a {
    font-size: 15px;
    font-weight: bold;
    color: #0F0F0F;
    font-family: 'Syne';
}

section.service-page .row+.row {
    margin-top: 40px;
}


section.construction-pages {
    padding-top: 12rem;
}

.construction-conetnt h3 {
    font-size: 2.25rem;
    font-weight: bold;
}

.construction-conetnt p {
    font-size: 15px;
    font-weight: 400;
    color: #6A6E71;
    line-height: 1.8;
}

.construction-conetnt .themeBtn {
    background: #000;
    border-radius: unset;
    font-size: 14px;
    font-weight: 500;
}



.contact-page form.helpForm.pricingform.aos-init.aos-animate {
    padding: 0;
}

.contact-page form.helpForm.pricingform .form-group input {
    border-radius: 8px;
    border: 1px solid #636d791f;
    height: 55px;
    background: #F4F4F4;
}

.contact-page form.helpForm.pricingform.aos-init.aos-animate .form-group {
    margin-bottom: 20px;
}


.contact-page .helpForm .form-group textarea {
    height: 140px !important;
    border-radius: 8px;
    border: 1px solid #636d7926;
    background: #F4F4F4;
    border-radius: unset;
}

.contact-pagetop a {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    background: #F4F4F4;
    padding: 1.5rem 45rem 1.5rem 1rem;
    position: absolute;
    top: -13.3rem;
    left: -8rem;
}

section.pricingpage.contact-page {
    padding-top: 13rem;
}

.helpBox h2 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.helpBox button.themeBtn {
    background: #000;
    border-radius: unset;
}

.contact-pagetop .mainHead {
    font-size: 2.25rem;
}

.contact-page form.helpForm.pricingform .form-group input::placeholder {
    color: #000;
}

.contact-page .helpForm .form-group textarea::placeholder {
    color: #000;
}

.additionbanner h2{
    text-transform: unset;
}

.vc-hoverbox-wrapper.vc-hoverbox-shape--round .vc-hoverbox-back, .vc-hoverbox-wrapper.vc-hoverbox-shape--round .vc-hoverbox-front {
    border-radius: 100%;
    /* height: 28vh; */
    width: 292px;
    height: 292px !important;
    /*object-fit: cover;*/
    background-size: cover;
}
.contact-pagetop a {
    padding: 10px 40px;
}


