html, body{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
/* Loader / Spinner Start */
#loader{
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 1;
  z-index: 9999;
}

a.nav-item{
  font-size: 1.2rem;
}

@media screen and (max-width: 1020px) {
  a.nav-item{
    font-size: 1.1rem;
  }
}

svg{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  svg circle{
    stroke: #475aedad;
  }
  
  .circle{
    transform-origin: center ;
  }
  #arc1{
    stroke-dasharray: 30;
    stroke-dashoffset: 18;
    animation: 10s -2s rota infinite linear;
  }
  #arc3{
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: 16s 1s rota infinite linear;
  }
  #arc4{
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: 6s 1s rota infinite linear reverse;
  }
  #arc5{
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: 4s 1s rota infinite linear;
  }
  #arc6{
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: 8s 1s rota infinite linear alternate;
  }
  #arc7{
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: 4s 1s rota infinite linear reverse;
  }
  text{
   fill: #ffffff;
   font: bold 24px sans-serif;
  }
  @keyframes rota{
    from{
      transform: rotate(0deg);
    }
    to{
      transform: rotate(360deg);
    }
  }

/* Loader / Spinner End */

.header_logo{
    height: 4rem;
    border-radius: 1.5rem;
}

/* Hero Section Start */

.hero {
    position: relative;
    height: 100vh;
    color: white;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
}
.hero-content p {
    font-size: 1.5rem;
    color: #fff;
}
/* Hero Section End */


.text-justify{
    text-align: justify;
}

/* #homesection{
    margin: 0%;
    background: linear-gradient(0deg, rgb(172, 203, 238) 0%, rgb(231, 240, 253) 100%);
} */

#homesection::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/hero_background.jpg');
    background-size: cover;
    opacity: 0.7;
}

/* @media (max-width:1024px){
    #homesection::before{
        content: '';
        position: absolute;
        top: 2rem;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: none;
        opacity: 0.7;
    }
} */

.hero_card{
    background-color: #9cafc0d0;
    color: dark;
    font-size: 1.2rem;
    border-radius: 5rem;
}

.hero_image{
    /* content: ''; */
    position: relative;
    width: 60%;
}
.hero_image img{
    border-radius: 5rem;
    padding: 1rem;
}
/* About Section Start */
.about_image{   
    border-radius: 5rem;
    padding: 1rem;
    width: 80%;
    margin-left: 4rem;
}


.text {
	font-size: 2rem;
	display: flex;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	user-select: none;

	.wrapper {
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 20px;
		.letter {
			transition: ease-out 5s;
			transform: translateY(40%);
            margin-bottom: 5px;
		}
		.shadow1 {
			transform: scale(1, -1);
			color: #999;
			transition: ease-in 5s, ease-out 5s;
		}
		&:hover {
			.letter {
				transform: translateY(-200%);
			}
			.shadow1 {
				opacity: 0;
				transform: translateY(200%);
			}
		}
	}
}

/* Contact Us Responsiveness Start*/
@media screen and (max-width: 576px) {
  .contact_title .text { 
    font-size: 1.8rem;
    .wrapper { padding-left: 15px; padding-right: 15px; }
  }
}
@media screen and (max-width: 470px) {
  .contact_title .text { 
    font-size: 1.5rem; 
    .wrapper { padding-left: 10px; padding-right: 10px; }
  }
}
@media screen and (max-width: 350px) {
  .contact_title .text { 
    font-size: 1rem; 
    .wrapper { padding-left: 10px; padding-right: 10px; }
  }
}

/* Contact Us Responsiveness End*/

/* About Us Responsiveness Start*/
@media screen and (max-width: 500px) {
  .about_text .text { 
    font-size: 1.6rem; 
    .wrapper { padding-left: 15px; padding-right: 15px; }
  }
}
@media screen and (max-width: 400px) {
  .about_text .text { 
    font-size: 1.2rem; 
    .wrapper { padding-left: 10px; padding-right: 10px; }
  }
}
@media screen and (max-width: 300px) {
  .about_text .text { 
    font-size: 1.2rem; 
    .wrapper { padding-left: 5px; padding-right: 5px; }
  }
}

/* About Us Responsiveness End*/

/* Features Responsiveness Start*/
@media screen and (max-width: 450px) {
  .feature_title .text { 
    font-size: 1.5rem; 
    .wrapper { padding-left: 15px; padding-right: 15px; }
  }
}
@media screen and (max-width: 350px) {
  .feature_title .text { 
    font-size: 1rem; 
    .wrapper { padding-left: 10px; padding-right: 10px; }
  }
}

/* Features Responsiveness End*/


/* Gallery Responsiveness Start*/
@media screen and (max-width: 400px) {
  .gallery_title .text { 
    font-size: 1.5rem; 
    .wrapper { padding-left: 15px; padding-right: 15px; }
  }
}
@media screen and (max-width: 300px) {
  .gallery_title .text { 
    font-size: 1rem; 
    .wrapper { padding-left: 10px; padding-right: 10px; }
  }
}


/* Gallery Responsiveness End*/



.about_text{
    margin-right: 4rem;
    text-align: justify;
    font-size: 1.2rem;
}


.about_text ul li{
    margin-bottom: 0.8rem;
}




.para {
    position: relative;
  }
  .para ul {
    position: relative;
  }
  .para ul li {
    position: relative;
    left: 0;
    /* color: #691f38; */
    color: #175c62;
    list-style: none;
    margin: 4px 0;
    border-left: 2px solid #f50057;
    transition: 0.5s;
    cursor: pointer;
  }
  .para ul li:hover {
    left: 10px;
  }
  .para ul li span {
    position: relative;
    padding: 8px;
    padding-left: 12px;
    display: inline-block;
    z-index: 1;
    transition: 0.5s;
  }
  .para ul li:hover span {
    color: #175c62;
  }
  .para ul li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: #f50057; */
    background: linear-gradient(0deg, rgb(172, 203, 238) 0%, rgb(231, 240, 253) 100%);
    
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.5s;
  }
  .para ul li:hover:before {
    transform: scaleX(1);
  }
  


/* About Section End */


/* New Features Start */

#featuresection{
    margin: 2%;
    background: linear-gradient(0deg, rgb(255, 209, 252) 0%, rgb(250, 208, 198) 100%);
    border-radius: 15px 50px;
}


.featureWrap {
	padding: 0;
	/* margin: 50px auto; */
	list-style: none;
	text-align: center;
    height: auto;
}
.featureWrap li {
	display: inline-block;
	width: 20%;
	min-width: 200px;
	max-width: 230px;
    /* height: 100%; */
	padding: 80px 20px 40px;
	position: relative;
	vertical-align: top;
	margin: 10px;
	min-height: 40vh;
    max-height: 40vh;
    overflow: scroll;
	/* background: #262a2b; */
	/* background: #262a2b; */
    background: linear-gradient(0deg, rgb(172, 203, 238) 0%, rgb(231, 240, 253) 100%);
	border: 1px solid #252727;
	text-align: left;
}


 /* Hide scrollbar for Chrome, Safari and Opera */
 .featureWrap li::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  .featureWrap li {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  } 

.featureWrap li h2 {
	font-size: 114px;
	margin: 0;
	position: absolute;
	opacity: 0.2;
	top: 50px;
	right: 10px;
	transition: all 0.3s ease-in-out;
}

.featureWrap li p {
	font-size: 16px;
	line-height: 18px;
	/* color: #b7b7b7; */
    color: #000;
    font-weight: bold;
	margin-top: 5px;
}


.featureWrap li:hover h2 {
	top: 0px;
	opacity: 0.6;
}

.featureWrap li:before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	z-index: -1;
	background: #fff;
	transform: skew(2deg, 2deg);
}
.featureWrap li:after {
	content: '';
	position: absolute;
	width: 40%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(255, 255, 255, 0.02);
}
.featureWrap li:nth-child(1):before {
	background: #C9FFBF;
background: -webkit-linear-gradient(to right, #FFAFBD, #C9FFBF);
background: linear-gradient(to right, #FFAFBD, #C9FFBF);
}
.featureWrap li:nth-child(2):before {
	background: #f2709c;
background: -webkit-linear-gradient(to right, #ff9472, #f2709c);
background: linear-gradient(to right, #ff9472, #f2709c);
}
.featureWrap li:nth-child(3):before {
	background: #c21500;
background: -webkit-linear-gradient(to right, #ffc500, #c21500);
background: linear-gradient(to right, #ffc500, #c21500);
}
.featureWrap li:nth-child(4):before {
	background: #FC354C;
background: -webkit-linear-gradient(to right, #0ABFBC, #FC354C);
background: linear-gradient(to right, #0ABFBC, #FC354C);
}
/* New Features End */


/* Gallery Section Start */
@media (min-width:950px) {
  #img_div{
      width: 900px; height: 900px;
  }
  #gallery_img_1{
      width: 300px; height: 600px; position: relative; float: left;
      
  }
  #gallery_img_2{
      width: 300px; height: 300px; position: relative;  float: left; top: -300px;
  }
  #gallery_img_3{
      width: 600px; height: 300px; position: relative; left: 300px;
  }
  #gallery_img_4{
      width: 300px; height: 300px; position: relative;  float: left;
  }
  #gallery_img_5{
      width: 300px; height: 300px; position: relative; left: 300px; top: 300px;
  }
  #gallery_img_6{
      width: 300px; height: 600px; position: relative;  float: left;
  }
}
@media (min-width:601px) and (max-width:950px) {
  #img_div{
      width: 600px; height: 1200px;
  }
  #gallery_img_1{
      width: 300px; height: 600px; position: relative; top: 600px; left: 300px; float: left; z-index: 10;
  }
  #gallery_img_2{
      width: 300px; height: 300px; position: relative;  float: left; top: -300px;
  }
  #gallery_img_3{
      width: 600px; height: 300px; position: relative; z-index: 0;
  }
  #gallery_img_4{
      width: 300px; height: 300px; position: relative;  float: left;
  }
  #gallery_img_5{
      width: 300px; height: 300px; position: relative; top: 600px;
  }
  #gallery_img_6{
      width: 300px; height: 600px; position: relative; top: -300px; float: left;
  }
}
@media (max-width:600px) {
  #img_div{
      width: 300px; 
  }
  #gallery_img_1{
      width: 90%; height: 600px;
  }
  #gallery_img_2{
      width: 90%; height: 300px;
  }
  #gallery_img_3{
      width: 90%; height: 300px;
  }
  #gallery_img_4{
      width: 90%; height: 300px;
  }
  #gallery_img_5{
      width: 90%; height: 300px;
  }
  #gallery_img_6{
      width: 90%; height: 600px;
  }
}
/* Gallery Section End */


#servicessection{
    margin: 0%;
    background: linear-gradient(0deg, rgb(186, 236, 202) 0%, rgb(236, 237, 162) 100%);
}


#footersection{
    margin: 0%;
    background: linear-gradient(0deg, rgb(228, 238, 255) 0%, rgb(241, 232, 236) 100%);
}

#idr{
    width: 70%;
}
@media (min-width:700) {
    #idr{
        width: 100%;
    }
}

#idrm{
    background-color: #bfda66;
    width: 25px;
}

.c_p_1{
    clip-path: polygon(0% 0% , 0% 100% , 80% 100%, 100% 50% , 80% 0% );
    margin: 0% 0% 10% 0%;
    padding: 2px 10px;
}
.c_p_2{
    clip-path: polygon(0% 50% , 20% 100% , 100% 100%, 100% 0% , 20% 0% );
    text-align: end;
    margin: 0% 0% 10% 0%;
    padding: 2px 10px;
}

    h2{
        color: #175c62;
    }
#card1{
    background: linear-gradient(0deg, rgb(186, 236, 202) 0%, rgb(236, 237, 162) 100%);
}
#card2{
    background: linear-gradient(0deg, rgb(255, 209, 252) 0%, rgb(250, 208, 198) 100%);
}
#card3{
    background: linear-gradient(0deg, rgb(172, 203, 238) 0%, rgb(231, 240, 253) 100%);
}
#card4{
    background: linear-gradient(0deg, rgb(228, 238, 255) 0%, rgb(241, 232, 236) 100%);
}

#cart{
    background: linear-gradient(to right, rgba(130, 190, 66, 1) 0%, rgba(48, 178, 210, 1) 50%, rgba(28, 76, 147, 1) 100%);

}



/* Footer Start */
.footer_brand{
  text-decoration: none;
}
.footer_text{
  text-align: justify;
}

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .8s;
    text-decoration: none;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 2px;
    font-size: 1.2rem;
    color: var(--bs-primary);
    text-decoration: underline;
}


.getInTouch a{
  transition: 0.8s;
  text-decoration: none;
  text-align: justify;
}

.getInTouch a:hover{
  letter-spacing: 1px;
  font-size:1rem;
}


/* Social Links  */

.social-links ul {
  padding: 0;
  display: flex;
  position: relative;
}

.social-links ul li {
  list-style: none;
  margin: 0 0.8rem;
}

.social-links ul li a {
  position: relative; 
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 63px;
  /* background: #333; */
  background: #212529;
  border-radius: 50%;
  font-size: 30px;
  /* color: #666; */
  color: #979899;
  transition: .5s;
}

.social-links ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* background: #ffee10; */
  background: #FFF;
  transition: .5s;
  transform: scale(.9);
  z-index: -1;
}

.social-links ul li a:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #FFF;
}

.social-links ul li a:hover {
  color: #334365;
  box-shadow: 0 0 5px #FFF;
  text-shadow: 0 0 5px #FFF;
}

@media screen and (max-width: 410px) {
  .social-links ul li{
    margin: 0 0.4rem;
  }

  .social-links ul li a {

    width: 50px;
    height: 50px;
    line-height: 48px;
    font-size: 25px;
  }
}


/*Contact Us Start*/
.contact .info {
    width: 100%;
    background: #fff;
  }
  
  .contact .info i {
    font-size: 20px;
    background: #e9ecef ;
    color: #151515;
    float: left;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
  }
  
  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #151515;
  }
  
  .contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #484848;
  }
  
  .contact .info .email,
  .contact .info .phone {
    margin-top: 40px;
  }
  
  .contact .php-email-form {
    width: 100%;
    background: #fff;
  }
  
  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    /*color: #000000;*/
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .error-message br+br {
    margin-top: 25px;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    /*color: #000000;*/
    background: #6c757d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: #000000;
    text-align: center;
    padding: 15px;
  }
  
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #6c757d;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form input,
  .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
  }
  
  .contact .php-email-form input:focus,
  .contact .php-email-form textarea:focus {
    border-color: #6c757d;
  }
  
  .contact .php-email-form input {
    height: 44px;
  }
  
  .contact .php-email-form textarea {
    padding: 10px 12px;
  }
  
  .contact .php-email-form button[type=submit] {
    background: #e9ecef;
    border: 0;
    padding: 10px 24px;
    color: #151515;
    transition: 0.4s;
    border-radius: 4px;
  }
  
  .contact .php-email-form button[type=submit]:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }

/*Contact Us End*/


/* Footer End */

/* Scroll to Top Button Start */
#scrollTop {
    display: none;
    position: fixed;
    bottom: 2.5rem; 
    right: 2.5rem;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    /* background-image: linear-gradient(0deg, rgb(172, 203, 238) 0%, rgb(231, 240, 253) 100%); */
    background-color: rgb(172, 203, 238); 
    color: rgb(0, 0, 0);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%; 
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 1s, transform 1s, box-shadow 1s;
  }
  
  #scrollTop:hover {
    /* background-image: linear-gradient(0deg, rgb(35, 110, 196) 0%, rgb(208, 217, 228) 100%); */
    background-color: rgb(21, 154, 159); 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-6px);
    transition: background-color 1s, transform 1s, box-shadow 1s;
  }

  #scrollTop i{
    border: none;
  }
  
  /* Scroll to Top Button End */




