@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

.logo{
  width: 130px;
}
@media screen and (max-width: 570px){
  .logo{
  width: 65px;
}
.text-down img{ 
  width:100%; 
  height:600px;
}
/* Modal content */
.modal-content {
  background-color: #fff;
  margin: 25% auto; 
  padding: 30px 10px 10px 10px;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  position: relative;
}
.section-services .single-service .part-2 {
    padding: 10px 20px 20px 10px !important;
}
}
.buttion{
  border: 1px solid #ffffff;
  padding: 10px;
  border-radius: 10px;
  background-color: #24252a
}
.buttion:hover{
  background-color: #434343;
  color: #000;
}

.letter{
  color: #fff;
  font-family:serif;
  margin: 0px auto;
  margin-top: 30px;
}
/* BHK popup */
#progress::-webkit-progress-value {
    background-color: var(--prm-color);
    transition: .5s ease;
}

#progress::-webkit-progress-bar {
    background-color: var(--prm-gray);

}
.popup-link{
  display:flex;
  flex-wrap:wrap;
}

.popup-link a{
    background: #ffffff;
    color: #000000;
    padding: 5px 20px;
    border-radius: 5px;
    font-size:17px;
    cursor:pointer;
    margin:20px;
    text-decoration:none;
}

.popup-container {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 17, 17, 0.61);
    display: flex;
    align-items: center;
}
.popup-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    z-index: 9999;
    width: 80%;
}
.popup-content h3{
  color: #000000;
}
.popup-content p{
    font-size: 17px;
    padding: 10px;
    line-height: 20px;
    color: #000000;
}
.popup-content ul li{
  color: #323232;
}
.popup-content a.close{
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    background: none;
    padding: 0;
    margin: 0;
    text-decoration:none;
}

.popup-content a.close:hover{
  color:#333;
}

.popup-content span:hover,
.popup-content span:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.popup-container:target{
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.popup-container h3{
  margin:10px;
}
/*End popup styles*/

.popup-style-7{
  transform: skewY(180deg);
   transition: all 0.7s ease-in-out;
}

.popup-style-7:target{
 transform: skewY(0deg);

 }
/*End popup styles*/

/* FAQ*/

.wrapper {
  width: 100%;
}

h1 {
  margin-bottom: 20px;
}

.qu-container {
  background-color: white;
  color: black;
  border-radius: 20px;
  box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
  margin: 20px 0;
}

.question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
}

.question.active + .answercont {
}

@media screen and (max-width: 790px){
  .wrapper {
  width: 100%;
}
}


/*-- form--*/

#contact {
  background: #FFFFFF;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.contact-box {
  max-width: 700px;
  background: #FFFFFF;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.contact-box h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.contact-box h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #3b82f6;
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}

.contact-lead {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.contact-box p {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #3b82f6;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s;
}

.contact-button:hover {
  background-color: #2563eb;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-item {
  position: relative;
}

.form-item input,
.form-item textarea {
  width: 100%;
  padding: 10px 6px;
  border: none;
  border-bottom: 2px solid black;
  background: transparent;
  font-size: 16px;
  outline: none;
  resize: none;
}

.form-item label {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: grey;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-item:has(textarea) label {
  top: 75%;
}

.form-item input:focus + label,
.form-item textarea:focus + label,
.form-item input:not(:placeholder-shown) + label,
.form-item textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 12px;
  color: black;
}

.form-button {
  background-color: black;
  color: white;
  border: none;
  padding: 12px 0;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.form-button:hover {
  background-color: #3b82f6;
  color: white;
}

.form-button:active {
  background-color: #3270D3;
}
.modal-content p{
  color: #000000;
}
.card-body h4{
  color: #000;
}
.card-body ol li{
  color: #000;
}
.card-body p{
  color: #000;
}
.road-map-main {
  margin: 50px 0 51px;
  .road-map-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 175px;
    @media (max-width: 991px) {
      margin-bottom: 25px;
      height: auto;
      display: block;
    }

    &::before {
      content: "";
      width: 100%;
      clear: both;
      display: block;
    }
    &::after {
      content: "";
      width: 100%;
      clear: both;
      display: block;
    }
    .road-map-circle {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      border: 25px solid transparent;
      border-top-color: #7a7bd7;
      border-right-color: #7a7bd7;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      transform: rotate(45deg);
      @media (max-width: 992px) {
        position: unset;
        border: 25px solid #7a7bd7;
      }

      .road-map-circle-text {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background-color: #eb0d0de0;
        font-size: 20px;
        font-weight: 600;
        line-height: 26px;
        text-transform: capitalize;
        color: #fff;
        box-shadow: 0px 0px 10px 5px #00000021;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transform: rotate(-45deg);
      }
    }
    .road-map-card {
      width: 35%;
      // float: right;
      background: #7a7bd7;
      padding: 20px 20px;
      z-index: 1;
      position: absolute;
      right: 0;
      border-radius: 5px;
      &::before {
        content: "";
        width: 25%;
        height: 20px;
        background: #7a7bd7;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -23%;
        z-index: -1;
      }
      @media (max-width: 991px) {
        width: 100%;
        margin-top: 30px;
        position: unset;
        &::before {
          content: "";
          width: 20px;
          height: 30%;
          top: 50%;
          transform: translateX(-50%);
          left: 50%;
        }
      }
      @media (max-width: 425px) {
        top: 45%;
      }
      .card-head {
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        margin: 0 0 15px;
        color: #fff;
      }
      .card-text {
        color: #fff;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        @media (max-width: 1199px) {
          -webkit-line-clamp: 4;
        }
      }
    }
    &:nth-of-type(even) {
      .road-map-circle {
        border-bottom-color: #7a7bd7;
        border-left-color: #7a7bd7;
        border-top-color: transparent;
        border-right-color: transparent;
        @media (max-width: 991px) {
          border-color: #7a7bd7;
        }
      }
      .road-map-card {
        // float: left;
        left: 0;
        &::before {
          right: -23%;
          left: unset;
          @media (max-width: 991px) {
            content: "";
            width: 20px;
            height: 30%;
            top: 50%;
            transform: translateX(-50%);
            left: 50%;
          }
          @media (max-width: 425px) {
            top: 45%;
          }
        }
      }
    }
  }
}

/*-- servies galary --*/

@media only screen and (min-width: 576px) {
	.i1{
		height: 320px;
		width: 100%;
    margin-bottom: 10px;
	}
  .i1:hover{
		height: 330px;
		width: 101%;
    border: 2px solid #fff;
	}
	.i2{
		height: 460px;
		width: 100%;
    margin-bottom: 10px;
	}
  	.i2:hover{
		height: 470px;
		width: 101%;
    border: 2px solid #fff;
	}
	.i3{
		height: 420px;
		width: 100%;
    margin-bottom: 10px;
	}
  .i3:hover{
		height: 430px;
		width: 101%;
    border: 2px solid #fff;
	}
	.i4{
		height: 440px;
		width: 100%;
    margin-bottom: 10px;
	}
  .i4:hover{
		height: 450px;
		width: 101%;
    border: 2px solid #fff;
	}
	.i5{
		height: 400px;
		width: 100%;
    margin-bottom: 10px;
	}
  .i5:hover{
		height: 410px;
		width: 101%;
    border: 2px solid #fff;
	}
	.i6{
		height: 360px;
		width: 100%;
    margin-bottom: 10px;  
	}
  .i6:hover{
		height: 370px;
		width: 101%;
    border: 2px solid #fff;
	}
}

/* Modal content */
.modal-content {
  background-color: #fff;
  margin: 15% auto; 
  padding: 30px 10px 10px 10px;
  border-radius: 8px;
  width: 80%;
  width: 400px;
  text-align: center;
  position: relative;
}

/* Close button */
.close-btn {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #000000;
}
section{
  width:100%;
}
/*   404 error page*/

.page_404{ padding:40px 0; background:#fff; font-family: 'Arvo', serif;
}

.page_404  img{ width:100%;}

.four_zero_four_bg{
 
 background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
    height: 400px;
    background-position: center;
 }
 
 
 .four_zero_four_bg h1{
 font-size:80px;
 }
 
  .four_zero_four_bg h3{
			 font-size:80px;
			 }
			 
			 .link_404{			 
	color: #fff!important;
    padding: 10px 20px;
    background: #39ac31;
    margin: 20px 0;
    display: inline-block;}
	.contant_box_404{ margin-top:-50px;}


  /*--Whatsapp--*/
  .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

/*-- Profit with purpose--*/

.section-services {
	padding-top: 110px;
	padding-bottom: 120px;
	font-family: "Poppins", sans-serif;
	background-color: #ffffff;
	color: #000000;
}

.section-services .header-section {
	margin-bottom: 35px;
}

.section-services .header-section .title {
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 25px;
	text-transform: uppercase;
	font-weight: 700;
}

.section-services .header-section .title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 140px;
	height: 1px;
	background-color: #f70037;
}

.section-services .header-section .title:after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 45px;
	height: 3px;
	background-color: #f70037;
}

.section-services .header-section .title span {
	color: #f70037;
  font-weight: 400;
  font-style: normal;
}

.section-services .header-section .description {
	color: #6f6f71;
 
}
.font-style{
  font-family: "Edu SA Hand", cursive;
  font-size: 25px;
}
.font-style>b{
  color: #f70000;
}
.section-services .single-service {
	margin-top: 40px;
	background-color: #24252a;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
}

.section-services .single-service .part-1 {
	padding: 40px 40px 25px;
	border-bottom: 2px solid #ffffff;
    min-height: 200px;

}

.section-services .single-service .part-1 i {
	margin-bottom: 25px;
	font-size: 50px;
	color: #f70037;
}

.section-services .single-service .part-1 .title {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.8em;
}

.section-services .single-service .part-2 {
	padding: 30px 40px 40px;
  min-height: 300px;
}

.section-services .single-service .part-2 .description {
	margin-bottom: 22px;
	color: #eeeeee;
	font-size: 14px;
	line-height: 1.8em;
}

.section-services .single-service .part-2 a {
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}

.section-services .single-service .part-2 a i {
	margin-right: 10px;
	color: #f70037;
}


/* Why Choose Us */
.why_choose{ 
  width:100%; 
  margin: 0 0 50px; 
  font-family: 'Raleway', sans-serif; 
}
.why_choose_head{ 
  width:100%; 
  text-align:center; 
  padding:30px;
}
.why_choose_head h1{ 
  width:100%; 
  color: #ffffff; 
  text-align:center; 
  font-size:32px; 
  font-family: 'Raleway-Medium', sans-serif;
}
.why_choose_head h1 span{ 
  border-bottom: 2px solid #a2437e; 
}
.text-down { 
  position:relative; 
  overflow:hidden;
}
.text-down img{ 
  width:100%; 
  height:400px;
}
.text-down .textbox { 
  width:100%; 
  height:250px; 
  position:absolute; 
  top:0; 
  left:0; 
  margin-top:-175px;
  -webkit-border-radius:50px; 
  -moz-border-radius:50px; 
  -ms-border-radius:50px; 
  border-radius:5px;
  background-color: #4e4b4b61; 
  -webkit-transition: all 0.7s ease; 
  transition: all 0.7s ease; 
}
.text-down:hover .textbox { 
  margin-top:0;
}
.details{ 
  height: 150px;
  width:100%; 
  padding: 30px 30px 0;  
  text-align:center; 
  color:rgba(255,255,255,1); 
  font-size:16px;
  font-family: 'Raleway-Light', sans-serif; 
}
.view-more{ 
  width:100%; 
  padding-top:0;  
  text-align:center; 
  color:rgba(255,255,255,1); 
  font-size:20px;
  font-weight:bold;
}
.text { 
  text-align:center; 
  padding-top: 40px; 
  color:rgba(255,255,255,1); 
  font-size:20px;
  font-family: 'Raleway-Light', sans-serif; 
}
.top { 
  padding-top:10px;
}



.y-us-section {
    padding: 82px 0 82px;
}
.y-us-head {
    text-align: center;
    margin: 0 0 91px;
}
.y-us-title h2 {
    color: #ffffff;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.y-us-title > p {
    color: #777777;
    line-height: 22px;
}
.y-us-title-border {
    background: #ffae11 none repeat scroll 0 0;
    border-radius: 2px;
    display: inline-block;
    height: 3px;
    position: relative;
    width: 50px;
}
.service-3 .service-box {
    margin-bottom: 18px;
}
.service-3 .service-box .iconset {
    float: left;
    text-align: center;
    width: 25%;
}
.service-3 .service-box .iconset i {
    color: #000;
    font-size: 44px;
}
.service-3 .service-box .y-us-content {
    float: left;
    width: 75%;
}
service-3 .service-box .y-us-content h4 {
    color: #3a3a3a;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 22px;
    margin: 14px 0 12px;
    text-transform: uppercase;
}
.service-3 .service-box .y-us-content p {
    color: #777777;
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
}

.icon {
    color : #f4b841;
    padding:0px;
    font-size:40px;
    border: 1px solid #fdb801;
    border-radius: 100px;
    color: #fdb801;
    font-size: 28px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    width: 70px;
}

/*--  Quzi content --*/
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 1000px !important;
        margin: 0rem auto;
    }
}

.modal-content1 {
  background-color: #fff;
  margin: 15% auto; 
  padding: 30px 10px 10px 10px;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  position: relative;
}
.quiz-container {
  background: white;

  max-width: 1000px;

  margin: 0px auto;

  padding: 20px;

  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);

  border-radius: 8px;
}

h1 {
  margin-bottom: 20px;
}

.btn-container {
  display: flex;

  flex-direction: column;
}

button {
  background-color: #007bff;

  color: white;

  border: none;

  padding: 10px;

  margin: 5px;

  cursor: pointer;

  border-radius: 5px;

  font-size: 16px;
}

button:hover {
  background-color: #0056b3;
}


.correct {
  background-color: #28a745 !important;
}

.wrong {
  background-color: #dc3545 !important;
}



@mixin mrtransition($time) {
	-webkit-transition: all $time cubic-bezier(.25, .1, .25, 1);
	-moz-transition: all $time cubic-bezier(.25, .1, .25, 1);
	transition: all $time cubic-bezier(.25, .1, .25, 1);
}

.box {
	position: relative;
	overflow: hidden;
	color: white;
	width: 100%;
  img {
		width: 100%;
		max-width: 100%;
		@include mrtransition(1s);
	}
	&:hover img {
		-webkit-transform: scale(1.3);
	  -moz-transform: scale(1.3);
		-ms-transform: scale(1.3);
		transform: scale(1.3);
		@include mrtransition(4s);
	}
	.overlay {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 15px;
		padding-top: 0;
		padding-bottom: 0;
		background: #363636;
		@include mrtransition(.4s);
	}
	&:hover .overlay {
		opacity: 0;
	}
	.hover {
		padding: 15px;
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		background: rgba(0, 0, 0, .5);
		@include mrtransition(.4s);
		text-align: center;
		&:hover {
			opacity: 1;
		}
	}
	.category {
		background-color: #8c8560;
		font-size: .75em;
		font-weight: 700;
		line-height: normal !important;
		position: relative;
		top: -15px;
		left: -15px;
		width: -webkit-calc(100% + 30px);
		width: -moz-calc(100% + 30px);
		width: calc(100% + 30px);
		padding: 3px 15px;
		background: #505050;
		@include mrtransition(.4s);
	}
	.btn {
		font-weight: 700;
		margin-top: 0;
		width: auto;
		cursor: pointer;
		font-size: 18px;
		display: inline-block;
	}
  .btn:hover
   { color: #f70037;}
	.vert-center-outer {
		position: absolute;
		left: 0;
		top: 0;
	}
}

.vert-center-outer {
	display: table;
  width: 100%;
  height: 100%;
}
.vert-center-inner {
	display: table-cell;
  vertical-align: middle;
  position: relative;
  z-index: 10;
}
.container {
	max-width: 1260px;
	margin-left: auto;
	margin-right: auto;
}
.grid-1-of-3 {
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
	@media (min-width: 600px) {
		width: 33%;
		float: left;
	}
}
body {
	height: 100%;
	min-height: 100vh;
	background: #356aa0; /* Old browsers */
background: -moz-linear-gradient(-45deg, #356aa0 0%, #356aa0 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg, #356aa0 0%,#356aa0 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg, #356aa0 0%,#356aa0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		-webkit-font-smoothing: antialiased; //whtie text fix
	-moz-osx-font-smoothing: grayscale;//whtie text fix
}
h1 {
	color: white;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 10px;
	text-align: center;
}







