body {
  font-family: "Montserrat";
  text-align: center;
  color: black;
}

h2, h3, h4, h5, h6 {
  font-family: "Montserrat";
  color: darkmagenta;
  font-style: inherit;
  font-weight: 800;
}
h1 {
  font-family: "Montserrat";
  color: red;
  font-weight: bold;
  font-size: 300%;
}

p {
  color: #000000;
}

a {
  color: black;
}

/* Heading */
.big-heading {
  font-family: "Montserrat";
  font-size: 3rem;
  line-height: 1.5;
  color: brown;
}

.section-heading {
  font-size: 2.5rem;
  line-height: 1.5;
}

/*Containers*/
.container-fluid {
  padding: 7% 15%;
}

/*Page Section*/
.colored-section {
  background-color:tan;
  color:red;
}

.white-section {
  background-color: #e0c8c8;
}

/* Navigation bar */
.navbar {
  padding : 0 30px 0 30px;
  
  color: #000000;
}

.navbar-brand {
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  font-style: inherit;
  color: rgb(62, 2, 14);
}

/* .nav-item {
  padding: 0 16px;
  color: #e80023;
} */

/* .navbar-nav .nav-item .nav-link {
  padding: 0 16px;
  font-size: 1.2rem;
  font-family: "Monserrat light";
  font-weight: bold;
  color: red;
} */

#navbarTogglerDemo02 .nav-link {
  font-size: 1.2rem;
  padding: left 180px; ;
  font-family: "Monserrat light";
  font-weight: bold;
  color: #ff4c68;
}

/* Download buttons */
.download-button {
  color: black;
  margin: 5% 3% 5% 0;
}

/*Title section*/
#title {
  background-color:#adff2f;
  color: rgb(8, 88, 6);
  text-align: left;
}

#title .container-fluid {
  padding: 3% 15% 7%;
}

/* Title Image */
.rotate-15 {
  width: 50%;
  transform: rotate(15deg);
  position: absolute;
  right: 20%;
}

/* Features section */
#features {
  position: relative;
}
.feature-title {
  font-size: 1.25rem;
}

.feature-box {
  padding: 4.5%;
}

.icon {
  color: rgb(0, 0, 0);
  margin-bottom: 1rem;
}

.icon:hover {
  color: #ff4c68;
}

/* Testimonials Section */
#testimonials {
  background-color: #ecd123;
}

.testimonial-text {
  font-size: 3rem;
  line-height: 1.5;
}

.testimonial-image {
  width: 10%;
  border-radius: 100%;
  margin: 20px;
}

.carousel-item {
  padding: 7% 15%;
}

#press {
  background-color: #ef8172;
  padding-bottom: 3%;
}

.press-logo {
  width: 15%;
  margin: 20px 20px 50px;
}

/* Pricing section */
#pricing {
  color: black;
  padding: 100px;
}

.price-text {
  font-size: medium;
  line-height: 1.5;
}

.pricing-column {
  padding: 3% 2%;
}

/* CTA section - styled with other css*/
 
/* Footer Section*/
.social-icon {
  font-size: medium;
  color: black;
  margin: 20px 10px;
}

.copyright {
  font-size: x-small;
  color:aqua;
}

/* Adding Media Query for responsive site for tablet and mobile view */
@media (max-width: 1028px) {
  #title {
    text-align: center;
  }
  .rotate-15 {
    position: static;
    transform: rotate(0);
  }
}
h1 { 
  font-family: helvetica;
  text-align:center;
  size: 10px;
}

.pin-code{ 
  padding: 0; 
  margin: 0 auto; 
  display: flex;
  justify-content:center;
  
} 
 
.pin-code input { 
  border: none; 
  text-align: center; 
  width: 48px;
  height:48px;
  font-size: 36px; 
  background-color: #F3F3F3;
  margin-right:5px;
} 



.pin-code input:focus { 
  border: 1px solid #573D8B;
  outline:none;
} 


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

button {
  font-size: 17px;
  padding: 0.5em 2em;
  border: transparent;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  background: dodgerblue;
  color: white;
  border-radius: 4px;
 }
 
 button:hover {
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(30,144,255,1) 0%, rgba(0,212,255,1) 100%);
 }
 
 button:active {
  transform: translate(0em, 0.2em);
 }
 