*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.nav-link.active{
  border-bottom: #1071f9 solid 2px;
}

.btn{
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.btn:hover{
  scale: 1.05;
  transition: all 0.3s ease-in-out;
}

fieldset{
  border-bottom: 1px solid #03142029;
  border-radius: 5px;
  padding: 3rem;
  margin: auto;
  margin-bottom: 3rem;
}

body{
  font-family: 'Poppins', sans-serif;
}

/*  Navigation Bar  */
.navbar{
  border-bottom: #0000000c solid 2px;
}

.navbar .container{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-collapse{
  flex-grow: 0;
}

.navbar-brand img{
  width: 70px;
  height: 70px;
}

.navbar-collapse .navbar-nav .nav-item a:hover{
  color: #1071f9;
}

/*  Call to Action Section  */
#carouselSlidesOnly{
  position: relative;
  margin-bottom: 5rem;
  z-index: 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-section{
  position: absolute;
  top: clamp(20%, 20vw, 40%);
  left: 10%;
  text-align: left;
  color: #f0f0f0;
  z-index: 1;
  width: 900px;
  padding: 2rem;
  background-color: #8d01ffb7;
  border-radius: 10px;
}

.cta-section h1{
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.emoji{
  margin-left: 0.5rem;
}

.cta-section p{
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight:600
}

.cta-section p:last-of-type{
  margin-bottom: 2rem;
}

/*  About Us Section  */
.about-section{
  margin-bottom: 5rem;
  text-align: left;
  color: #031420;
  z-index: 1;
}

.about-section h2{
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-section h2::after{
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: #1071f9;
  margin-top: 1rem;
}

.about-section h3{
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-section h3::after{
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: #1071f9;
  margin-top: 1rem;
}

.about-section p{
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.about-section .paragrapgh{
  margin-bottom: 5rem;
}

.about-section .container p a{
  color: #1071f9;
  text-decoration: none;
}

.about-section .container p a:hover{
color: green;
}

/*  Special Offer  */
.special-offer{
  margin: auto;
  width: 80%;
  background-color: #8d01ffb7;
  margin-bottom: 5rem;
  text-align: center;
  color: #f0f0f0;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.special-offer .btn-warning{
  font-size: 1.5rem;
  color: #f0f0f0;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.special-offer p{
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

/*Form section*/
.form-section .container h2{
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-section .container h2::after{
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: #1071f9;
  margin-top: 1rem;
}

/*  Footer  */
footer{
  height: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #031420;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  margin-top: 5rem;
}

.footer-center p{
  font-size: 1rem;
}

.footer-content .btn{
  margin-bottom: 1rem;
}

.footer-content{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

footer p{
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .cta-section{
    max-width: 900px;
    min-width: 600px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .cta-section{
    max-width: 600px;
    min-width: 300px;
    left: 50%;
    transform: translateX(-50%);
  }

  .cta-section h1{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .cta-section p{
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight:600
  }
}

@media (max-width: 600px) {
  .cta-section{
    max-width: 400px;
    min-width: 200px;
    position: unset;
    transform: translateX(10%);
    margin-bottom: 5rem;
  }

  #carouselSlidesOnly{
    position: unset;
  }
}

@media (max-width: 425px) {
  .cta-section{
    position: unset;
    transform: translateX(3.3%);
    margin-bottom: 5rem;
  }
}