*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Times New Roman", Times, serif;
  scroll-behavior: smooth;
  color: white;
  
}
body{
  background-color: black;
}

/* nav bar starts */

nav{
  position: fixed;
  z-index: 99;
  height: 80px;
  width: 100%;
  background:linear-gradient(to bottom right, #000000, gray, #000000);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 50px 0px 100px;
  margin-top: -90px;
  border-bottom-left-radius: 125px;
}
.logo img{
  margin-left: -55px;
  height: 75px;
  width: 150px;
  margin-top: 0px;
}
nav ul{
  display: flex;
  list-style: none;
}
nav ul li{
  margin: 0 5px;
  margin-left: -10px;
}
nav ul li a{
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 10px;
  border-radius: 5px;
  transition: all 0.5s ease;
}
nav fa-solid{
  height: 25px;
  width: 25px;
  background: black;
}
nav ul li a:hover,
nav ul li a.active{
  color: gray;
  background:linear-gradient(to bottom right, #000000, gray);
}
nav .menu-btn i{
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}
#click{
  display: none;
}
@media (max-width: 480px){
  nav .menu-btn i{
    display: block;
    margin-right: -25px;
    
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav{
    width: 100%;
    height: 80px;
    position: fixed;
  }
  nav .logo img{
    margin-left: -65px;
    height: 65px;
    width: 120px;
    margin-top: 5px;
  }
  nav ul{
    position: fixed;
    top: 80px;
    left: -100%;
    background:linear-gradient(to top right, #000000, gray, #000000);
    height: 90vh;
    width: 52.9%;
    display: block;
    text-align: center;
    transition: all 0.8s ease;
  }
  #click:checked ~ ul{
    left: 0%;
    height: 400px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  nav ul li{
    margin: 40px 0;
  }
  nav ul li a{
    font-size: 20px;
    display: block;
  }
  nav ul li a:hover,
  nav ul li a.active{
    color: cyan;
    background: none;
  }
}

/* nav bar end */

/* banner starts */

.banner-main{
	height: 75vh;
	width: 100%;
	margin-top: 90px;
}
.banner1{
  height: 75vh;
  width: 95%;
  position: absolute;
  margin-left: 30px;
}
.banner1 img{
  height: 75vh;
  width: 100%;
  border-radius: 20px;
}
.text-box1{
  width: 600px;
  position: absolute;
  top: 200px;
  margin-left: 100px;
  color: black;
  margin-top: 30px;
}
.text-box1 h1{
  margin-bottom: 40px;
  color: black;
  font-size: 35px;
}
.text-box1 p{
  font-size: 20px;
  line-height: 18px;
  margin-top: 30px;
  color: black;
}
.text-box1 span{
  background: red;
  height: 1px;
  width: 250px;
  position: absolute;
  left: 0;
  margin-top: -34px;
}
.banner2{
  height: 75vh;
  width: 95%;
  position: absolute;
  margin-left: 30px;
}
.banner2 img{
  height: 75vh;
  width: 100%;
  border-radius: 20px;
}
.text-box2{
  width: 600px;
  position: absolute;
  top: 200px;
  left: 100px;
  margin-top: 30px;
}
.text-box2 h1{
  margin-bottom: 40px;
  color: white;
  font-size: 35px;
}
.text-box2 p{
  font-size: 20px;
  line-height: 18px;
  margin-top: 30px;
  color: white;
}
.text-box2 span{
  background: red;
  height: 1px;
  width: 150px;
  position: absolute;
  left: 0;
  margin-top: -34px;
}
.banner3{
  height: 75vh;
  width: 95%;
  position: absolute;
  margin-left: 30px;
}
.banner3 img{
  height: 75vh;
  width: 100%;
  border-radius: 20px;
}
.text-box3{
  width: 600px;
  position: absolute;
  top: 200px;
  left: 100px;
  color: black;
  margin-top: 30px;
}
.text-box3 h1{
  margin-bottom: 40px;
  color: white;
  font-size: 35px;
}
.text-box3 p{
  font-size: 20px;
  line-height: 18px;
  margin-top: 30px;
  color: white;
}
.text-box3 span{
  background: red;
  height: 1px;
  width: 150px;
  position: absolute;
  left: 0;
  margin-top: -34px;
}
.banner1{
  animation: slide1 20s linear infinite;
}
.banner2{
  animation: slide2 20s linear infinite;
}
.banner3{
  animation: slide3 20s linear infinite;
}
@keyframes slide1{
  0%{
    visibility: visible;
  }
  25%{
    visibility: hidden;
  }
  50%{
    visibility: hidden;
  }
  75%{
    visibility: hidden;
  }
  100%{
    visibility: hidden;
  }
}
@keyframes slide2{
  0%{
    visibility: hidden;
  }
  25%{
    visibility: hidden;
  }
  50%{
    visibility: visible;
  }
  75%{
    visibility: hidden;
  }
  100%{
    visibility: hidden;
  }
}
@keyframes slide3{
  0%{
    visibility: hidden;
  }
  25%{
    visibility: hidden;
  }
  50%{
    visibility: hidden;
  }
  75%{
    visibility: visible;
  }
  100%{
    visibility: hidden;
  }
}
@media (max-width: 480px){
	.banner-main{
		width: 100%;
		height: 75vh;
    margin-top: 80px;
	}
	.banner1{
  	width: 100%;
  	height: 75vh;
  	margin-left: 0px;
	}
	.banner1 img{
		width: 100%;
		height: 75vh;
	}
	.text-box1{
		width: 70%;
		margin-left: 50px;
		margin-top: 100px;
		height: auto;
	}
	.text-box1 h1{
		font-size: 25px;
		margin-left: 0px;
    margin-top: -150px;
	}
	.text-box1 p{
		font-size: 20px;
    text-align: justify;
	}
	.text-box1 span{
		width: 170px;
	}
	.banner2{
  	width: 100%;
  	height: 75vh;
  	margin-left: 0px;
	}
	.banner2 img{
		width: 100%;
		height: 75vh;
	}
	.text-box2{
		width: 70%;
		margin-left: -70px;
		margin-top: 180px;
		height: auto;
	}
	.text-box2 h1{
		font-size: 25px;
		margin-left: 0px;
    margin-top: -150px;
	}
	.text-box2 p{
		font-size: 20px;
    text-align: justify;
	}
	.text-box2 span{
		width: 100px;
	}
	.banner3{
  	width: 100%;
  	height: 75vh;
  	margin-left: 0px;
	}
	.banner3 img{
		width: 100%;
		height: 75vh;
	}
	.text-box3{
		width: 70%;
		margin-left: -50px;
		margin-top: 100px;
		height: auto;
	}
	.text-box3 h1{
		font-size: 25px;
		margin-left: 0px;
    margin-top: -150px;
	}
	.text-box3 p{
		font-size: 20px;
    text-align: justify;
	}
	.text-box3 span{
		width: 100px;
	}
}

/* banner starts */

/* call & whats app link starts */

.direct-link-main{
	width: 100%;
	height: 50px;
	margin-top: 10px;
	display: flex;
	position: fixed;
}
.direct-call-link{
	width: 50px;
	height: 50px;
	margin-left: 10px;
}
.direct-call-link img{
	height: 50px;
	width: 50px;
	border-radius: 10px;
}
.direct-call-link img{
  animation: shake 5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.whats-app-direct-link{
	width: 50px;
	height: 50px;
  margin-left: 1140px;
}
.whats-app-direct-link img{
	height: 50px;
	width: 50px;
	border-radius: 10px;
}
.whats-app-direct-link img{
  animation: shake 5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
	
@media (max-width: 480px){
	.direct-link-main{
		width: 100%;
		height: 50px;	
    margin-top: 15px;
    margin-left: 0px;
  }
	.direct-call-link{
		width: 50%;
    height: 40px;
    margin-left: 0px;
	}
	.direct-call-link img{
		width: 40px;
    height: 100%;
    margin-left: 30px;
	}
	.whats-app-direct-link{
		width: 50%;
    height: 40px;
		margin-left: 0px;
	}
  .whats-app-direct-link img{
    margin-left: 120px;
    width: 40px;
    height: 100%;
  }
}

/* call & whats app link end */

/* why crystal carz */

.why-crystal{
  margin-top: 20px;
  text-align: center;
  font-size: 25px;
  background:linear-gradient(to bottom, #000000, gray, #000000);
  width: 600px;
  border-radius: 100%;
  margin-left: 340px;
}
.why-crystal-main{
  width: 95%;
  height: 170px;
  margin-left: 32px;
  margin-top: 25px;
}
.why-crystal-submain{
  width: 100%;
  height: 75px;
  margin-top: 10px;
  display: flex;
}
.why-1{
  width: 375px;
  height: 75px;
  color: white; 
  border-top-right-radius: 0%;
  border-bottom-right-radius: 0%;
}
.why-1 h2{
  font-size: 21px;
  padding-top: 10px;
  background:linear-gradient(to bottom left, #000000, gray, #000000);
  height: 75px;
  border-bottom-right-radius: 100%;
  padding-left: 5px;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.5), 0 12px 6px rgba(0, 0, 0, 0.1);
}
.why-2{
  width: 375px;
  height: 75px; 
  margin-left: 37px;
  color: white; 
}
.why-2 h2{
  font-size: 21px;
  padding-top: 10px;
  margin-top: 25px;
  background:linear-gradient(to left, #000000, gray, #000000);
  height: 50px;
  border-radius: 100%;
  padding-left: 5px;
  text-align: center;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.5), 0 12px 6px rgba(0, 0, 0, 0.1);
}
.why-3{
  width: 375px;
  height: 75px;
  margin-left: 38px; 
  color: white;
}
.why-3 h2{
  font-size: 21px;
  padding-top: 10px;
  background:linear-gradient(to bottom right, #000000, gray, #000000);
  height: 75px;
  border-bottom-left-radius: 100%;
  padding-left: 65px;
  text-align: center;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.5), 0 12px 6px rgba(0, 0, 0, 0.1);
}
.why-crystal-submain2{
  width: 100%;
  height: 75px;
  margin-top: 10px;
  display: flex;
}
.why-4{
  width: 375px;
  height: 75px;
  color: white; 
}
.why-4 h2{
  font-size: 21px;
  padding-top: 30px;
  background:linear-gradient(to bottom right, #000000, gray, #000000);
  height: 75px;
  padding-left: 65px;
  border-top-right-radius: 100%;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.5), 0 12px 6px rgba(0, 0, 0, 0.1);
}
.why-5{
  width: 375px;
  height: 75px; 
  margin-left: 37px;
  color: white; 
}
.why-5 h2{
  font-size: 21px;
  padding-top: 10px;
  margin-top: -10px;
  background:linear-gradient(to left, #000000, gray, #000000);
  height: 50px;
  border-radius: 100%;
  padding-left: 5px;
  text-align: center;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.5), 0 12px 6px rgba(0, 0, 0, 0.1);
}
.why-6{
  width: 375px;
  height: 75px;
  margin-left: 38px; 
  color: white;
}
.why-6 h2{
  font-size: 21px;
  padding-top: 30px;
  background:linear-gradient(to bottom left, #000000, gray, #000000);
  height: 75px;
  border-top-left-radius: 100%;
  padding-left: 65px;
  text-align: center;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.5), 0 12px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 480px){
  .why-crystal{
    font-size: 18px;
    width: 90%;
    margin-left: 15px;
  }
  .why-crystal-main{
    width: 100%;
    height: 335px;
    margin-left: 0px;
    display: block;
   
  }
  .why-crystal-submain{
    width: 100%;
    height: 160px;
    margin-top: 10px;
    display: block;
   
  }
 .why-1{
    height: 50px;
    width: 100%;
   
  }
 .why-1 h2{
    height: 100%;
    font-size: 18px;
  }
 .why-2{
    height: 50px;
    width: 100%;
    margin-left: 0px;
    margin-top: -20px;
   
  }
 .why-2 h2{
    height: 100%;
    font-size: 18px;
    border-top-right-radius: 0%;
    border-top-left-radius: 0%;
    border-bottom-left-radius: 0%;
    border-bottom-right-radius: 100%;
    background:linear-gradient(to bottom left, #000000, gray, #000000);
    text-align: justify;
  }
 .why-3{
    height: 50px;
    width: 100%;
    margin-left: 0px;
    margin-top: 5px;
    
  }
 .why-3 h2{
    height: 100%;
    font-size: 18px;
    border-top-right-radius: 0%;
    border-top-left-radius: 0%;
    border-bottom-left-radius: 0%;
    border-bottom-right-radius: 100%;
    background:linear-gradient(to bottom left, #000000, gray, #000000);
    padding-left: 5px;
    text-align: justify;
  }
  .why-crystal-submain2{
    width: 100%;
    height: 160px;
    margin-top: 10px;
    display: block;
   
  }
 .why-4{
    height: 50px;
    width: 100%;
   
  }
 .why-4 h2{
    height: 100%;
    font-size: 18px;
    border-top-right-radius: 0%;
    border-top-left-radius: 0%;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 0%;
    background:linear-gradient(to bottom right, #000000, gray, #000000);
    text-align: end;
    padding-top: 8px;
    padding-right: 10px;
  }
 .why-5{
    height: 50px;
    width: 100%;
    margin-left: 0px;
    margin-top: 15px;
    
  }
 .why-5 h2{
    height: 100%;
    font-size: 18px;
    border-top-right-radius: 0%;
    border-top-left-radius: 0%;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 0%;
    background:linear-gradient(to bottom right, #000000, gray, #000000);
    text-align: end;
    padding-right: 10px;
  }
 .why-6{
    height: 50px;
    width: 100%;
    margin-left: 0px;
    margin-top: 5px;
   
  }
 .why-6 h2{
    height: 100%;
    font-size: 18px;
    border-top-right-radius: 0%;
    border-top-left-radius: 0%;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 0%;
    background:linear-gradient(to bottom right, #000000, gray, #000000);
    padding-right: 10px;
    text-align: end;
    padding-top: 8px;
  }
}
/* why crystal carz */

/* what we do starts */

.what-we-do{
  margin-top: 45px;
  text-align: center;
  font-size: 25px;
  background:linear-gradient(to bottom, #000000, gray, #000000);
  width: 600px;
  border-radius: 100%;
  margin-left: 340px;
}
.what-we-do-main{
  width: 100%;
  height: 450px;
  border-radius: 10px;
  margin-top: 30px;
  display: inline-flex;
  background-image: url("landing-page-pics/3939243.jpg");
  position: relative;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.what-we-do-submain1{
  height: 250px;
  width: 250px;
  margin-left: 46px;
  transition: transform 0.8s; /* Animation */
  cursor: pointer;
  opacity: 0.5;
  position: relative;
}
.what-we-do-submain1:hover{
  transform: scale(1.05);
  opacity: 1;
}
.what-we-do-submain1 img{
  width: 250px;
  height: 250px;
  border-radius: 10px;
}
.what-we-do-submain1 p{
  margin-top: -150px;
  color: black;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  background-color: whitesmoke;
  font-size: 3.4vw; 
  font-weight: bold;
  mix-blend-mode: screen;
}
.what-we-do-submain2{
  height: 250px;
  width: 250px;
  transition: transform 0.8s; /* Animation */
  cursor: pointer;
  opacity: 0.5;
  position: relative;
  margin-left: 60px;
}
.what-we-do-submain2:hover{
  transform: scale(1.05);
  opacity: 1;
}
.what-we-do-submain2 img{
  width: 250px;
  height: 250px;
  border-radius: 10px;
}
.what-we-do-submain2 p{
  margin-top: -150px;
  color: black;
  position: absolute;
  text-transform: uppercase;
  text-align: center;
  background-color: whitesmoke;
  font-size: 3.85vw; 
  font-weight: bold;
  mix-blend-mode: screen;
}
.what-we-do-submain3{
  height: 250px;
  width: 250px;
  margin-left: 46px;
  transition: transform 0.8s; /* Animation */
  cursor: pointer;
  opacity: 0.5;
  position: relative;
}
.what-we-do-submain3:hover{
  transform: scale(1.05);
  opacity: 1;
}
.what-we-do-submain3 img{
  width: 250px;
  height: 250px;
  border-radius: 10px;
}
.what-we-do-submain3 p{
  margin-top: -150px;
  color: black;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  background-color: whitesmoke;
  font-size: 3.65vw; 
  font-weight: bold;
  mix-blend-mode: screen;
}
.what-we-do-submain4{
  height: 250px;
  width: 250px;
  margin-left: 45px;
  transition: transform 0.8s; /* Animation */
  cursor: pointer;
  opacity: 0.5;
  position: relative;
}
.what-we-do-submain4:hover{
  transform: scale(1.05);
  opacity: 1;
}
.what-we-do-submain4 img{
  width: 250px;
  height: 250px;
  border-radius: 10px;
}
.what-we-do-submain4 p{
  margin-top: -150px;
  color: black;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  background-color: whitesmoke;
  font-size: 3.4vw; 
  font-weight: bold;
  mix-blend-mode: screen;
}
.what-we-do-submain5{
  height: 170px;
  width: 545px;
  margin-left: -840px;
  margin-top: 265px;
  transition: transform 0.8s; /* Animation */
  cursor: pointer;
  opacity: 0.5;
  position: relative;
}
.what-we-do-submain5:hover{
  transform: scale(1.05);
  opacity: 1;
}
.what-we-do-submain5 img{
  width: 545px;
  height: 170px;
  border-radius: 10px;
}
.what-we-do-submain5 p{
  margin-top: -140px;
  color: black;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  background-color: whitesmoke;
  font-size: 4.94vw ;
  font-weight: bold;
  mix-blend-mode: screen;
}
@media (max-width: 480px){
  .what-we-do{
    width: 90%;
    margin-left: 15px;
    font-size: 18px;
    margin-top: 20px;
  }
  .what-we-do-main{
    display: block;
    height: 1400px;
    width: 100%;
  }
  .what-we-do-submain1{
    width: 90%;
    height: 250px;
    margin-left: 36px;
  }
  .what-we-do-submain1 img{
    width: 90%;
    height: 250px;
  }
  .what-we-do-submain1 p{
    margin-top: -100px;
    font-size: 10.4vw; 
  }
  .what-we-do-submain2{
    width: 90%;
    height: 250px;
    margin-left: 36px;
    margin-top: 25px;
  }
  .what-we-do-submain2 img{
    width: 90%;
    height: 250px;
  }
  .what-we-do-submain2 p{
    margin-top: -150px;
    font-size: 16vw; 
  }
  .what-we-do-submain3{
    width: 90%;
    height: 250px;
    margin-left: 36px;
    margin-top: 25px;
  }
  .what-we-do-submain3 img{
    width: 90%;
    height: 250px;
  }
  .what-we-do-submain3 p{
    margin-top: -150px;
    font-size: 15.2vw; 
  }
  .what-we-do-submain4{
    width: 90%;
    height: 250px;
    margin-left: 36px;
    margin-top: 25px;
  }
  .what-we-do-submain4 img{
    width: 90%;
    height: 250px;
  }
  .what-we-do-submain4 p{
    margin-top: -150px;
    font-size: 9.63vw; 
  }
  .what-we-do-submain5{
    width: 90%;
    height: 250px;
    margin-left: 36px;
    margin-top: 25px;
  }
  .what-we-do-submain5 img{
    width: 90%;
    height: 250px;
  }
  .what-we-do-submain5 p{
    margin-top: -150px;
    font-size: 8vw; 
  }
}

/* what we do end */

/* choose your plan starts */

.choose-plan{
  width: 95%;
  height: 45px;
  margin-top: 45px;
  margin-left: 33px;
  text-align: center;
  font-size: 25px;
  background:linear-gradient(to right, #000000, gray, #000000);
  border-radius: 100%;
  color: white;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.5), 0 12px 6px rgba(0, 0, 0, 0.1);
}
.trending-images{ 
  height: 335px;
  margin-top: 40px;
  width: 95%;
  margin-left: 33px;
  margin-bottom: 80px;
  display: flex;
}
.trending-images-1{
  height: 220px;
  width: 31.5%;
  margin-left: 0px;
}
.trending-images-1 img{
  height: 100%;
  width: 100%;
  border-top-right-radius: 100%;
  border-top-left-radius: 100%;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.5), 0 12px 6px rgba(0, 0, 0, 0.1);
}
.trending-images-1 h3{
  font-size: 30px;
  background:linear-gradient(to bottom right, #000000, gray, #000000);
  width: 100%;
  height: 110px;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  color: white;
  text-transform: uppercase;
  padding: 20px 25px;
  margin-left: 0px;
  text-align: center;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.5), 0 12px 6px rgba(0, 0, 0, 0.1);
}
.trending-images-1 a{
  text-decoration: none;
}
.trending-images-1 p{
  margin-top: -180px;
  width: 378px;
  text-align: center;
  font-size: 20px;
  opacity: 0;
  transition: 0.6s;
  transition-property: opacity, transform;
}
.trending-images-1:hover p{
  background:linear-gradient(to left, #000000, gray,  #000000);
  color: white;
  opacity: 1;
  transform: translateY(40px);
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.3), 0 12px 6px rgba(0, 0, 0, 0.2);
  border-radius: 100%;
}
.trending-images-2{
  height: 220px;
  width: 31.5%;
  margin-left: 33px; 
}
.trending-images-2 img{
  height: 100%;
  width: 100%;
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.5), 0 12px 6px rgba(0, 0, 0, 0.1);
}
.trending-images-2 h3{
  font-size: 30px;
  background:linear-gradient(to top, #000000, gray);
  width: 100%;
  height: 110px;
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  color: white;
  text-transform: uppercase;
  padding: 20px 10px;
  margin-left: 0px;
  text-align: center;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.5), 0 12px 6px rgba(0, 0, 0, 0.1);
}
.trending-images-2 a{
  text-decoration: none;
}
.trending-images-2 p{
  width: 378px;
  margin-left: 0px;
  margin-top: -180px;
  text-align: center;
  font-size: 20px;
  opacity: 0;
  transition: 0.6s;
  transition-property: opacity, transform;
}
.trending-images-2:hover p{
  background:linear-gradient(to left, #000000, gray, #000000);
  color: white;
  opacity: 1;
  transform: translateY(40px);
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.3), 0 12px 6px rgba(0, 0, 0, 0.2);
  border-radius: 100%;
}
.trending-images-3{
  width: 31.5%;
  height: 220px;
  margin-left: 33px;
  margin-top: -5px;
}
.trending-images-3 img{
  height: 220px;
  width: 100%;
  border-top-right-radius: 100%;
  border-top-left-radius: 100%;
  margin-top: 5px;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.5), 0 12px 6px rgba(0, 0, 0, 0.1);
}
.trending-images-3 h3{
  font-size: 30px;
  background:linear-gradient(to bottom left, #000000, gray, #000000);
  width: 100%;
  height: 110px;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  color: white;
  text-transform: uppercase;
  padding: 20px 50px;
  margin-left: 0px;
  z-index: 99;
  text-align: center;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.5), 0 12px 6px rgba(0, 0, 0, 0.1);
}
.trending-images-3 a{
  text-decoration: none;
}
.trending-images-3 p{
  width: 378px;
  margin-top: -180px;
  text-align: center;
  font-size: 20px;
  opacity: 0;
  transition: 0.6s;
  transition-property: opacity, transform;
}
.trending-images-3:hover p{
  background:linear-gradient(to left, #000000, gray, #000000);
  color: white;
  opacity: 1;
  transform: translateY(40px);
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.3), 0 12px 6px rgba(0, 0, 0, 0.2);
  border-radius: 100%; 
}
@media (max-width: 480px){
	.choose-plan{
		margin-top: 25px;
		width: 100%;
		margin-left: 0px;
		font-size: 16px;
		height: 28px;
	}
	.trending-images{
		display: block;
		width: 100%;
		height: 900px;
		margin-left: 0px;
		margin-top: 20px;
	}
	.trending-images-1{
		width: 100%;
		height: auto;
	}
	.trending-images-1 img{
		width: 100%;
		height: 220px;
	}
	.trending-images-1 h3{
		width: 100%;
		height: 60px;
		font-size: 16px;
    background:linear-gradient(to left, #000000, gray, #000000);
	}
	.trending-images-1 p{
		width: 100%;
		height: auto;
		margin-top:-130px;
	}
	.trending-images-2{
		width: 100%;
		height: auto;
		margin-left: 0px;
		margin-top: 120px;
	}
	.trending-images-2 img{
		width: 100%;
		height: 220px;
	}
	.trending-images-2 h3{
		width: 100%;
		height: 60px;
		font-size: 16px;
    background:linear-gradient(to left, #000000, gray, #000000);
	}
	.trending-images-2 p{
		width: 100%;
		height: auto;
		margin-top:-130px;
	}
	.trending-images-3{
		width: 100%;
		height: auto;
		margin-left: 0px;
		margin-top: 120px;
	}
	.trending-images-3 img{
		width: 100%;
		height: 220px;
	}
	.trending-images-3 h3{
		width: 100%;
		height: 60px;
		font-size: 16px;
    background:linear-gradient(to left, #000000, gray, #000000);
	}
	.trending-images-3 p{
		width: 100%;
		height: auto;
		margin-top:-130px;
	}
}

/* choose your plan end */

/* time line starts */

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto; 
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  color: black;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid gray;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left1 {
  left: 0;
}

/* Place the container to the right */
.right1 {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left1::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right1::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right1::after {
  left: -16px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background:linear-gradient(to left, #000000, gray, #000000);
  position: relative;
  border-radius: 6px; 
}
.content h2{
  font-size: 25px;
}
.content p{
  font-size: 20px;
  margin-top: 15px;
}
/* Media queries - Responsive timeline on screens less than 600px wide */
@media (max-width: 480px) {
  /* Place the timelime to the left */
  .timeline{
    margin-top: -90px;
  }
  .timeline::after {
  left: 31px;
  }
  
  /* Full-width containers */
  .container {
  width: 100%;
  padding-left: 70px;
  padding-right: 25px;
  }
  
  /* Make sure that all arrows are pointing leftwards */
  .container::before {
  left: 60px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left1::after, .right1::after {
  left: 15px;
  }
  
  /* Make all right containers behave like the left ones */
  .right1 {
   left: 0%;
  }
  .content h2{
    font-size: 20px;
  }
  .content p{
    font-size: 15px;
    margin-top: 8px;
  }
}

/* time line end */

/* rating starts */

.rating_main{
  margin: 0 auto; /*Center website */
  max-width: 800px; /* Max width */
  padding: 20px;
  margin-top: 20px;
}
.heading {
  font-size: 25px;
  margin-left: 250px;
}
.rating_main p{
  margin-top: 5px;
  margin-left: 260px;
}
.fa {
  font-size: 25px;
}
.checked {
  color: orange;
}

/* Three column layout */
.side {
  float: left;
  width: 15%;
  margin-top:10px;
}

.middle {
  margin-top:10px;
  float: left;
  width: 70%;
}

/* Place text to the right */
.right {
  text-align: right;
} 

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
} 

/* The bar container */
.bar-container {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  color: white;
} 

/* Individual bars */
.bar-5 {width: 75%; height: 18px; background-color: goldenrod;}
.bar-4 {width: 35%; height: 18px; background-color: gold;}
.bar-3 {width: 1%; height: 18px; background-color: gold;}
.bar-2 {width: 1%; height: 18px; background-color: gold;}
.bar-1 {width: 1%; height: 18px; background-color: gold;} 

/* Responsive layout - make the columns stack on top of each other instead of next to each other */
 @media (max-width: 480px) {
  .rating_main{
    margin-top: 0px;
  }
  .heading{
    font-size: 20px;
    width: 100%;
    margin-left: 50px;
    margin-top: 0px;
  }
  .rating_main p{
    margin-left: 30px;
    font-size: 16px;
    margin-top: 5px;
    width: 80%;
    text-align: center;
  }
  .fa{
    font-size: 18px;
  }
  .side, .middle {
    width: 100%;
  }
  .right {
    display: none;
  }
} 

/* rating end */

/* image container starts */

.image-container {
  background-image: url("landing-page-pics/ChrisRiley-SteamCleaning.jpg");
  position: relative;
  height: 300px;
  width: 100%;
  margin-top: 30px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.text {
  background-color: whitesmoke;
  color: black;
  font-size: 10vw; 
  font-weight: bold;
  margin: 0 auto;
  padding: 10px;
  width: 62%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
@media (max-width: 480px){
  .image-container{
    height: 400px;
    margin-top: 0px;
    width: 100%;
    margin-left: 0px;
  }
  .image-container img{
    width: 100%;
    height: 100%; 
  }
}

/* image container end */

/* how it works starts */

.how-it-works{
  margin-top: 45px;
  text-align: center;
}
.how-it-works h2{
  font-size: 35px;
}
.how-it-works p{
  font-size: 20px;
  margin-top: 15px;
}
@media (max-width: 480px){
	.how-it-works{
		width: 100%;
		height: auto;
		margin-top: 10px;
	}
	.how-it-works h2{
		font-size: 20px;
	}
	.how-it-works p{
		text-align: justify;
		width: 95%;
		margin-left: 10px;
		font-size: 15px;
	}
}

/* how it works starts */

/* thanku comment starts */

.thanku-comment{
  text-align: center;
  height: 30px; 
  margin-top: 35px;
  background:linear-gradient(to right, #000000, gray, #000000);
  border-radius: 100%;
}
.thanku-comment h2{
  color: white;
  padding-top: 1px; 
}
@media (max-width: 480px){
	.thanku-comment{
    margin-top: 10px;
		width: 100%;
		height: 25px;
		font-size: 11px;
		box-shadow: 0 13px 26px rgba(0, 0, 0, 0.3), 0 12px 6px rgba(0, 0, 0, 0.2);
	}
}

/* thanku comment end */

/* footer starts */

footer{
  width: 100%;
  height: 400px;
  margin-top: 23px;
  background:linear-gradient(to bottom right, #000000, gray, #000000);
  color: #fff;
  padding: 100px 0 30px;
  font-size: 13px;
  line-height: 23px;
  border-top-left-radius: 125px;
}
.row{
  width: 84%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.col{
  flex-basis: 25%;
  padding-left: 0px;
  font-size: 15px;
}
.col:nth-child(2), .col:nth-child(3){
  flex-basis: 20%;
}
.logo-2{
  width: 270px;
  margin-bottom: 50px;
  padding-left: 40px;
  font-size: 25px;
}
.col p{
  margin-top: -25px;
  margin-left: -40px;
  padding-left: 10px;
  text-align: justify;
  font-size: 18px;
}
.col:nth-child(2){
  margin-left: 65px;
}
.col h3{
  width: fit-content;
  margin-bottom: 20px;
  position: relative;
  margin-left: 80px;
  font-size: 20px;
}
.email-id{
  width: fit-content;
  border-bottom: 1px solid #ccc;
  margin: 20px 0;
}
ul li{
  list-style: none;
  margin-bottom: 12px; 
  margin-left: 85px;
}
ul li a{
  text-decoration: none;
  color: #fff;
}
form{
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}
form .far{
  font-size: 18px;
  margin-right: 10px;
}
form input{
  width: 100%;
  background: transparent;
  color: #ccc;
  border: 0;
  outline: none;
}
form button{
  background: transparent;
  border: 0 ;
  outline: none;
  cursor: pointer;
}
form button .fas{
  font-size: 16px;
  color: #ccc;
}
.social-icons{
  margin-left: 50px;
}
.social-icons .fab{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #000;
  background: #fff;
  margin-right: 8px;
  cursor: pointer;
}
hr{
  width: 90%;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 20px auto;
}
.copyright{
  text-align: center;
}
@media (max-width: 480px){
	footer{
		width: 100%;
    margin-top: 15px;
    height: 550px;
	}
	.row{
		display: block;
	}
	.col{
		width: 100%;
		height: auto;
    margin-top: 10px;
	}
  .col p{
    font-size: 15px;
    margin-left: 5px;
  }
  .col h3{
    margin-top: 5px;
  }
  .col ul{
    padding-top: 15px;
  }
  .col ul li{
    margin-left: 0px;
  }
	.logo-2{
		margin-top: -80px;
    margin-left: 30px;
	}
	.col:nth-child(1) p{
		margin-top: -30px;
	}
	.col:nth-child(2){
		margin-left: 0px;
		width: 50%;
		float: left;
	}
	.col:nth-child(2) h3{
		margin-left: 15px;
	}
	.col:nth-child(2) ul{
		margin-left: 35px;
		margin-top: -25px;
	}
	.col:nth-child(3){
		margin-left: 0px;
		width: 50%;
		float: left;
	}
	.col:nth-child(3) h3{
		margin-left: 30px;
	}
	.col:nth-child(3) ul{
		margin-left: 35px;
		margin-top: -25px;
	}
	.col:nth-child(4){
		width: 100%;
		float: left;
	}
  .col:nth-child(4) h3{
    margin-left: 20px;
    margin-top: -10px;
  }
	.social-icons{
		margin-top: -10px;
    margin-left: 20px;
	}
  .copyright{
    margin-top: -8px;
  }
}

/* footer end */