@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --body-color: #161616;
    --primary-color: #860120;
    --secondary-color: #e5bf78;
    --vibrant-color: #fc4a4b;
    --golden-gradient: radial-gradient( ellipse farthest-corner at right bottom, #b65454 0%, #a23737 8%, #c60404 30%, #990000 40%, transparent 80% ), radial-gradient( ellipse farthest-corner at left top, #ffffff 0%, #f68989 8%, #a23737 25%, #c60404 62.5%, #990000 100% );
    --golden-gradient-hover: radial-gradient( ellipse farthest-corner at left top, #ffffff 0%, #f68989 8%, #a23737 25%, #c60404 62.5%, #990000 100% ), radial-gradient( ellipse farthest-corner at right bottom, #b65454 0%, #a23737 8%, #c60404 30%, #990000 40%, transparent 80% );
    --colorBlue: #002855;
    --facebook: #4267b2;
    --twitter: #00acee;
    --linkedin: #0e76a8;
    --youtube: #ff0000;
    --whatsapp: #25d366;
    --instagram: #c92bb7;
}

body {
    font: 500 1rem/1.4 "Montserrat", serif;
    overflow-x: hidden;
    color: var(--body-color);
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

li {
    list-style-type: none;
}

a,
a:hover {
    text-decoration: none;
}

.object-cover{
    object-fit: cover;
}

.padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.rounded {
    border-radius: 10px !important;
}

img {
    width: 100%;
    display: block;
}

.text-vibrant {
    color: var(--vibrant-color) !important;
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.bg-primary {
  background-color: var(--primary-color) !important;
  color: #fff;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}
.bg-primary-linear {
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color)) !important;
}

.bg-primary-gradient {
  background-image: radial-gradient(
    circle at 50% -100%,
    var(--primary-color),
    #083233
  );
}

.gap-row {
  row-gap: 30px;
}
.gap-form-row {
  row-gap: 10px;
}
.scroller {
  overflow: auto;
}

.scroller::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #cfcfcf;
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: #000;
}

main {
    padding: 10px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    inset: 10px 10px auto;
    padding: 7px 1rem;
    background: var(--golden-gradient);
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
    border-radius: 10px;
    z-index: 997;
    transition: all 300ms ease-in-out;
}
.header::before{
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 10px;
    background: radial-gradient(circle at 60% -30%, #ffeeee, #ffffff,#ffeeee);
    z-index: -1;
}

.logo {
    width: 160px;
}

.hero{
  margin-top: 103px;
  /* height: calc(100vh - (2rem + 89px)); */
}

.banner-left .inner{
  padding: 2rem;
  background: radial-gradient(circle at 80% -30%, var(--vibrant-color), var(--primary-color));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.banner-left .projectLogo {
  margin: 1rem 0;
  text-transform: uppercase;
  width: 100%;
  padding: 1rem 0;
  border-top: 1px solid rgb(255 255 255 / 15%);
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  letter-spacing: 2px;
}

.banner-left .projectLogo h4 {
  font-weight: 800;
  color: var(--secondary-color);
}

.banner-left .projectLogo h6{
  font-size: .75rem;
  letter-spacing: 3 px;
}

.banner {
  /* height: 480px; */
  position: relative;
  z-index: 1;
}

.banner-aside .inner {
  background:radial-gradient(circle at 90% 10%, #398937, #71a66d, #b9e59d);
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
}
.banner-aside .inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/leaves-shadow.png) top right / 70% no-repeat;
  opacity: 0.2;
  z-index: -1;
}

.banner-aside .projectLogo {
  margin-bottom: 1rem;
  text-transform: uppercase;
  width: 100%;
}

.banner-aside .projectLogo h2 {
  font-weight: 800;
}

.banner-aside .banner-heading {
  color: #fff;
  text-shadow: 1px 1px 0 rgb(0 0 0 / 20%);
}

.banner-aside .h4 {
  font-weight: 800;
  line-height: 1;
}

.banner-aside .h4 span{
  letter-spacing: 1px;
}

.banner-aside form {
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 15%);
}

.blink{
  animation: blink 1s alternate linear infinite calc(var(--i) * 300ms);
}

@keyframes blink{
  33%{color: var(--instagram);}
  66%{color: var(--primary-color); background-color: var(--vibrant-color); box-shadow: 0 3px 3px rgb(0 0 0 / 15%), 0 6px 20px rgb(0 0 0 / 10%);}
  100%{color: var(--whatsapp);}
}

.form-group {
    text-align: left;
    font-size: 17px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: .2rem;
}

.readmore {
  width: 100%;
  margin-top: 2.5rem;
}

.readmore .button {
  display: table;
  padding: 10px 15px;
  min-width: 140px;
  border-radius: 3rem;
  color: #fff;
  background: var(--golden-gradient);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
  position: relative;
  z-index: 1;
}

.readmore .button.whatsapp{
  min-width: 1px;
  background: var(--whatsapp);
}

.readmore button {
  border-radius: 0;
  border: none;
  font-size: 14px;
  background: none;
}

.readmore .button:hover {
  background: var(--golden-gradient-hover);
}

.readmore .button.bg-white {
  color: var(--body-color);
  background: #fff !important;
}

.readmore .button.bg-white:hover {
  color: #fff;
  background: var(--body-color) !important;
}
.readmore .button.bg-dark {
  color: #fff;
  background: #000 !important;
}

.readmore .button.bg-dark:hover {
  background: var(--primary-color) !important;
}

.readmore.d-flex, .readmore.d-sm-flex{
  justify-content: center;
  gap: 10px;
}

.heading {
    margin-bottom: 30px;
    text-align: center;
}

.iconbox-main {
    display: flex;
    width: 100%;
}

.iconbox {
    display: flex;
    gap: 9px;
    align-items: center;
    background: #000;
    color: #fff;
    border-right: 1px solid #fff;
    padding: 7px;
    justify-content: center;
}

/*----------------------------------------Client counter---------------------------*/
.counter-bg {
    background: #edfdf6;
}

.counter-head {
    width: 80%;
}

.counter-window {
    width: 100%;
    
    text-align: center;
    position: relative;
}

.counter-window h1,
.counter-window h3 {
    font-weight: 600;
    text-transform: uppercase;
}

.counter-window h3 {
    margin-bottom: 30px;
    color: #212121;
}

.counter-window span {
    color: #6d6d6d;
    display: inline-block;
    vertical-align: top;
    font-weight: 400;
}

.counter-window span>span {
    margin-bottom: 0;
}

.counter-window .circle {
    background: #2980b9;
    width: 200px;
    line-height: 200px;
    display: inline-block;
    color: #212121;
    border-radius: 100%;
}

.counter-window code,
code>span {
    display: block;
    font-family: Monaco, monospace;
    background: #444;
    color: #212121;
    padding: 20px;
    font-size: 14px;
    margin-bottom: 100px;
}

.counter-window code>span {
    padding: 0;
    margin: 0;
}

.counterBox {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.counter-window .main-div-cou {
    width: 20%;
    display: inline-block;
    vertical-align: top;
    margin: 0 -2px;
    padding: 20px 10px;
    text-align: center;
}

.counter-window .main-div-cou .title-icon {
    width: 100%;
    
    font-size: 25px;
    text-align: center;
    padding-bottom: 10px;
    display: none;
}

.counter-window .main-div-cou .title-icon i {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #212121;
    color: #bababa;
}

.counter-window .main-div-cou .coun-data {
    width: 100%;
    
    position: relative;
}

.counter-window .main-div-cou .counter {
    font-size: 40px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    width: 140px;
    height: 140px;
    line-height: 140px;
    border-radius: 20px;
    border: 5px solid #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.34901960784313724), 0px 0px 30px inset;
}

.counter-window .main-div-cou #counter1 {
    color: #60A688;
}

.counter-window .main-div-cou #counter2 {
    color: #6086A6;
}

.counter-window .main-div-cou #counter3 {
    color: #ffb47b;
}

.counter-window .main-div-cou #counter4 {
    color: #d86f87;
}

.counter-window .main-div-cou #counter5 {
    color: #7A60A6;
}

.counter-window .main-div-cou #counter6 {
    color: #7A60A6;
}

.counter-window .main-div-cou #counter7 {
    color: #A69460;
}

.counter-window .main-div-cou #counter8 {
    color: #60A688;
}

.counter-window .main-div-cou #counter9 {
    color: #A66087;
}

.counter-window .main-div-cou .title {
    width: 100%;
    margin-top: 15px;
    color: #3D3D3D;
    text-transform: uppercase;
    font-size: 14px;
}

.counter-window .main-div-cou .title span {
    width: 100%;
    
    text-transform: capitalize;
    padding-top: 10px;
    font-size: 14px;
}

.suncityInfraList li {
    width: calc(100% / 6 - 6px);
    display: inline-table;
    /* padding: 20px; */
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

.suncityInfraList .imgBox {
    width: 60%;
    margin: auto auto 5px auto;
}

.suncityInfraList img {
    border-radius: 10px;
    background: #ffffff;
    padding: 10px;
    border: 3px solid #fee6b4;
}

.suncityInfraList.iconContainer li:before,
.suncityInfraList.iconContainer li:after {
    background: rgba(172, 172, 172, 0.4);
}

.suncityInfraList.iconContainer li a {
    color: #1d1d1d;
}

.suncityInfraList.iconContainer li a:hover {
    color: #bc9d5c;
}

.parentSpeakBox .heading {
    width: 100%;
}

.parentSpeakSlider {
    width: 100%;
    
}

.parentSpeak-inBox {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 10px 2rem 2rem;
    display: inline-block;
}

.parentSpeak-Txt {
    width: 100%;
    
}

.parentSpeak-Txt .scroller {
    height: 170px;
    padding-right: 10px;
    overflow: auto;
}

.parentSpeak-Txt p {
    font-size: 16px;
    position: relative;
    isolation: isolate;
    padding: 0 2rem;
}

.parentSpeak-Txt p::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: url(images/doublequote-top.png) no-repeat center;
    background-size: 100%;
    top: -2px;
    left: 0;
    z-index: -1;
}

.parentSpeak-Txt p::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: url(images/doublequote-bottom.png) no-repeat center;
    background-size: 100%;
    bottom: 0px;
    right: auto;
    z-index: -1;
}

.parentSpeak-info {
    width: 100%;
    
    margin-top: 30px;
}

.parentSpeak-info h2 {
    font-weight: 400;
    font-size: 20px;
    position: relative;
    display: table;
    text-align: center;
    width: auto;
    margin: 0 auto;
    padding: 10px;
}

.parentSpeak-info h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 0;
    top: 0;
    border-top: 2px solid #860120;
    border-bottom: 2px solid #860120;
}

.parentSpeak-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    right: 50%;
    top: 0;
    border-top: 2px solid #bc9d5c;
    border-bottom: 2px solid #bc9d5c;
}

.parentSpeak-subBox .owl-carousel .owl-nav {
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    margin-top: 10px;
}

.parentSpeak-subBox .owl-carousel .owl-nav button.owl-prev {
    background: none;
    position: relative;
    font-family: fontAwesome;
    font-weight: 100;
    transition: all .2s ease-in-out;
    font-size: 0;
    left: 0;
    outline: none;
    margin: 5px;
    padding: 0;
}

.parentSpeak-subBox .owl-carousel .owl-nav button.owl-prev::before {
    content: '\f060';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 15px;
    color: #860120;
    border: 1.5px solid #860120;
    border-radius: 50%;
    padding: 12px 13px;
    transition: all 300ms ease-in-out;
}

.parentSpeak-subBox .owl-carousel .owl-nav button.owl-next {
    background: none;
    position: relative;
    font-family: fontAwesome;
    font-weight: 100;
    transition: all .2s ease-in-out;
    font-size: 0;
    left: 0;
    outline: none;
    margin: 5px;
    padding: 0;
}

.parentSpeak-subBox .owl-carousel .owl-nav button.owl-next::before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 15px;
    color: #860120;
    border: 1.5px solid #860120;
    border-radius: 50%;
    padding: 12px 13px;
    transition: all 300ms ease-in-out;
}

.parentSpeak-subBox .owl-carousel .owl-nav button.owl-prev:hover::before {
    color: #bc9d5c;
    border: 1.5px solid #bc9d5c;
}

.parentSpeak-subBox .owl-carousel .owl-nav button.owl-next:hover::before {
    color: #bc9d5c;
    border: 1.5px solid #bc9d5c;
}

.videoTestim {
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    background: var(--secondary-color);
}

.videoTestimBox {
    width: 100%;
    
}

.videoTestimBox iframe {
    width: 100%;
    display: block;
    height: 250px;
}

.nameBox {
    width: 100%;
    
}

.nameBox h4 {
    padding-top: 20px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

.videoTestimonialSlider {
    padding-bottom: 70px;
    position: relative;
}

.videoTestimonialSlider .swiper-button-next,
.videoTestimonialSlider .swiper-button-prev {
    top: auto;
    bottom: 0;
}

.videoTestimonialSlider .swiper-button-prev {
    left: 50%;
    margin-left: -50px;
}

.videoTestimonialSlider .swiper-button-next {
    right: 50%;
    margin-right: -50px;
}

.videoTestimonialSlider .swiper-button-prev:after {
    content: '\f060';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 15px;
    color: #860120;
    border: 1.5px solid #860120;
    border-radius: 50%;
    padding: 12px 13px;
    transition: all 300ms ease-in-out;
}

.videoTestimonialSlider .swiper-button-next:after {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 15px;
    color: #860120;
    border: 1.5px solid #860120;
    border-radius: 50%;
    padding: 12px 13px;
    transition: all 300ms ease-in-out;
}

.videoTestimonialSlider .arrowBtns {
    margin-top: 0;
}

.videoTestimonialSlider .swiper-button-prev:hover::after {
    color: #bc9d5c;
    border: 1.5px solid #bc9d5c;
}

.videoTestimonialSlider .swiper-button-next:hover::after {
    color: #bc9d5c;
    border: 1.5px solid #bc9d5c;
}

.videoTestimonialSlider .readmore {
    margin-top: 28px;
}

.cube {
    display: flex;
    justify-content: space-around;
}

.table{
    margin-bottom: 0;
}

.table th{
    color: var(--primary-color);
    background: radial-gradient(circle at 90% 10%, #398937, #71a66d, #b9e59d);
    vertical-align: middle;
    text-align: center;
}

.list li{
	width:100%;
	margin:5px 0;
	padding-left:20px;
	font-size:14px;
	line-height:22px;
	position:relative;
}
.list li::before{
	content:'\26AE';
	position:absolute;
	left:0;
	color:var(--secondary-color);
}
.list.small-list li{
	width:calc(100% / 3);
}

footer {
    background: var(--golden-gradient-hover);
    padding: 10px;
    font-size: 13px;
    text-align: center;
    color: #FFFFFF;
}
.modal-content {
    background: radial-gradient(circle at 90% 10%, #398937, #71a66d, #b9e59d);
}
.modal-content .readmore button {
    background: #fff !important;
}
.modal-content button.close {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    z-index: 1;
    text-shadow: none;
    color: var(--body-color);
    opacity: 1;
}.modal-content button.close {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    z-index: 1;
    text-shadow: none;
    color: var(--body-color);
    opacity: 1;
}
@media screen and (max-width:1370px) {
    .form-group {
        font-size: 15px;
        margin-bottom: 6px;
    }
}

@media screen and (max-width:1024px) {
    .header h2
    {
            font-size: 20px;
    }
    .banner {
        height: auto;
    }
    .banner {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 980px) {
    .banner-text form {
        max-width: 100%;
    }
    .menu li a span { display: none;}
}
@media screen and (max-width: 778px) {
	.counter-window .main-div-cou {
    width: 33%;
	}
}

@media screen and (max-width: 480px) {
    .header h2 {
        display: none;
    }
    .header {
        flex-wrap: wrap;
        gap: 5px;
    }
	.header {
		justify-content: center;
		box-shadow: none;
		border-radius: 0;
	}
	.header::before {
		content: '';
		position: absolute;
		inset: 0;
		border-radius: 0;
		background: #fff;
		z-index: -1;
	}
    .logo, .call-now {
        height: auto;
        width: 221px;
    }
	.banner-left
	{
    order: 2;
	}
    .suncityInfraList li {
        width: calc(100% / 4 - 6px);
    }
    .nameBox h4 {
        font-size: 17px;
    }
    .parentSpeak-info h2 {
        font-size: 17px;
    }
    .counter-window .main-div-cou {
        width: 33%;
    }
}

@media screen and (max-width: 425px) {
    body {
        font: 300 15px/1.4 "Roboto Slab", sans-serif;
    }

    .banner {
        align-items: center;
        flex-wrap: wrap;
        height: auto;
    }

    .counter-window .main-div-cou {
        width: 50%;
    }

    .suncityInfraList li {
        width: calc(100% / 2 - 3px);
    }

    .parentSpeak-info h2 {
        font-weight: 400;
        font-size: 16px;
    }

    .padding {
        padding: 2rem 0;
    }
}