/* CSS Variables  */

/* Global styles */

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

html,
body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 2% 0;
}

i {
  margin-right: -20px;
  position: relative;
  right: 25px;
  color: #f3ca40;
}

/* section styles */

.wrapper-container {
  padding: 3% 10%;
}

section#hero-section {
  background-color: #e7e7e7;
  height: 100vh;
  max-height: 800px;
}

.wrapper-header {
  text-align: center;
  margin: 2% 0;
}

.wrapper-header h2 {
  padding: 4% 4% 2%;
  font-size: 2.5vw;
  font-weight: 600;
  letter-spacing: 3px;
}

.hr-dots-main {
  border-top: dotted 16px #f00000;
  width: 25%;
  padding-top: 3rem;
  margin: 3% auto;
}

/* navigation styles */

.wrapper-nav {
  justify-content: space-between;
  position: relative;
  z-index: 99;
}

.hamburger {
  position: relative;
  top: 35px;
}
.wrapper-nav-pages {
  position: relative;
  top: 35px;
  width: 80%;
  left: 120px;
}

.wrapper-nav-items {
  justify-content: space-evenly;
}

.nav-link-style {
  box-shadow: inset 0 0 0 0 #f3ca40;
  color: #000;
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  font-weight: 500;
  border-radius: 2rem;
}

.nav-link-style:hover {
  box-shadow: inset 100px 0 0 0 #f3ca40;
  color: white;
}

/* hero section main */
/* Left Coloumn (text) */
.wrapper-title {
  padding: 5% 0 0 0;
}

.hero-title {
  font-size: 3.33vw;
  letter-spacing: 2px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 5%;
  color: #f00000;
}

.base-button {
  font-weight: 400;
  letter-spacing: 2px;
  border: 4px solid #f3ca40;
  margin: 5% 3% 5% 0;
  border-radius: 2rem;
  font-size: 1rem;
  transition: color 0.3s ease-in-out,
    border 0.3s ease-in-out backgroud-color 0.3s ease-in-out;
}

.base-button:hover {
  border: 3px solid #f3ca40;
  background-color: #f3ca40;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transform: scale(1.01);
}
/* hero section main */
/* Right Coloumn Img */
.hero-img {
  top: 160px;
  position: absolute;
  right: 90px;
  width: auto;
  max-width: 50rem;
}

/* About Section  */

#about-section {
  position: relative;
  z-index: 1;
  background-color: #fffbfe;
}

h2.about-header {
  background: #f3ca40;
  border-radius: 50px;
  padding: 1% 0;
  margin-bottom: 2%;
  color: #fffbfe;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.about-text {
  padding: 0 7%;
  font-weight: 200;
  font-size: 1.2rem;
}

.col-lg-6 #clt-skyline {
  border-radius: 20px;
  position: relative;
  left: 75px;
}

.about-post {
  background-color: #fffbfe;
  height: 80%;
  width: 90%;
  margin: 7% 0 15%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

article .about-post {
  border-radius: 20px;
  position: relative;
  right: 75px;
}

.about-post header {
  padding: 7% 7% 5%;
  text-align: center;
}

.about-post header h3 {
  background-color: #f00000;
  padding: 7px;
  color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 25px;
}

article h3 {
  text-align: center;
  padding: 3%;
}

div picture.col-lg-4 {
  margin: auto;
}
/* Services Section  */
.service-section {
  background-color: #e7e7e7;
  display: flex;
  flex-direction: column;
}

.service-header {
  position: relative;
  left: 250px;
  top: 120px;
  width: 35%;
}

#services div h2 {
  background-color: #d80032;
  border-radius: 20px;
  padding: 3px;
  color: #fff;
  font-weight: 200;
  text-align: center;
  font-size: 2.1vw;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.service-cards {
  display: flex;
  justify-content: space-evenly;
  border: 5px dashed #f3ca40;
  padding: 3.5rem 2.5rem 2.5rem;
}

.price-card {
  height: 500px;
  width: 250px;
  margin: 20px;
  border-radius: 20px;
  background: #fffbfe;
  transition: all 300ms;
}

.price-card:hover {
  background: #fffbfe;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transform: scale(1.05);
}

.price-card--top {
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #000;
  padding: 1.5rem 0;
}

.price-card-title {
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-align: center;
}

.price-wrapper {
  font-size: 0.8rem;
  font-weight: 200;
  margin: 0;
  color: #d80032;
}

.price-sign {
  font-weight: 400;
  font-size: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  position: relative;
  top: 5px;
  margin: 0 5px;
}

.card-hr {
  border-top: dotted 3px;
  color: #d80032;
  width: 90%;
  margin-top: 30px;
}

.price-card--bottom {
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-info {
  list-style: none;
  padding: 50px 0 0 30px;
}

.info {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #333;
  padding-right: 5px;
}

.price-btn {
  display: block;
  padding: 10px 65px;
  margin: 30px auto;
  font-size: 1rem;
  border: none;
  color: #fffbfe;
  border-radius: 100px;
  font-weight: 700;
  background: #d80032;
  transition: background 500ms;
}

.price-btn:hover {
  cursor: pointer;
  background: #ef233c;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transform: scale(1.01);
}

/* Footer Section  */

#footer-section {
  margin: 1% 0;
}

footer {
  margin: 1px;
  border-radius: 10px;
  padding: 4% 0 0;
}

.footer-icon {
  padding: 0 1rem;
}
.footer-text {
  font-weight: 100;
  font-size: 0.8rem;
}

/* Resource & FAQ page */
.nav-wrapper-bg,
#FAQs {
  background-color: #e7e7e7;
}

section#FAQs {
  padding-bottom: 4%;
}

.link-header {
  padding: 3% 0;
}

.resource-links:not(:last-child) {
  margin-bottom: 10px;
}

#faqs-title {
  text-align: center;
  padding-bottom: 3%;
}

.title-center {
  text-align: center;
}

.header-faq {
  padding: 3% 0;
  font-weight: 500;
}

/* CONTACT page */

#contact-section .row {
  --bs-gutter-x: 0;
}

.contact-wrapper {
  border-radius: 20px;
  background-color: #e7e7e7;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.contact-post {
  background-color: #fffbfe;
  border-radius: 20px;
  height: 80%;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  position: relative;
  z-index: 99;
}

.contact-post header h3 {
  background-color: #f00000;
  padding: 7px;
  color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 25px;
  width: 70%;
  margin: 0 auto;
}

.contact-post header {
  padding: 7% 7% 5%;
  text-align: center;
}

.contact-info {
  text-align: center;
  line-height: 4rem;
  font-size: 1.3rem;
}

.contact-info p strong,
.contact-info p i {
  font-size: 1.5rem;
}

.contact-info p i {
  font-size: 2rem;
  color: green;
}

.contact-text {
  font-size: 2rem;
  color: #ef233c;
  font-weight: 800;
}

.contact-img {
  border-radius: 25px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(243, 202, 64, 0.19);
  position: relative;
  z-index: 1;
  right: 30px;
  top: 30px;
}

@media (max-width: 1440px) {
  .hero-img {
    top: 290px;
    right: 190px;
    max-width: 40rem;
  }

  .hr-dots-main {
    padding-top: 2rem;
  }

  .wrapper-header {
    line-height: 2.5rem;
  }
  .about-header {
    margin-bottom: 2.5rem;
  }
  .about-post header h3,
  h3 {
    font-size: 1.5rem;
  }
  .service-header {
    top: 100px;
    width: 40%;
  }
  #services div h2 {
    font-size: 2.3vw;
    padding: 10px;
  }
  .price-card {
    height: 600px;
    width: 350px;
  }

  .price-card-title {
    font-size: 1.7rem;
  }

  .price-wrapper {
    font-size: inherit;
  }

  .price-sign,
  .price-btn {
    font-size: 1.3rem;
  }

  .price-amount {
    font-size: 3rem;
  }

  .card-info {
    padding: 60px 0 0 40px;
  }

  .info {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  section#hero-section {
    max-height: 650px;
  }

  .hero-img {
    top: 270px;
    right: 120px;
    max-width: 30rem;
  }

  article .about-post {
    right: 0;
    bottom: 135px;
    left: 50px;
  }

  .service-header {
    left: 225px;
    width: 55%;
  }

  #services div h2 {
    font-size: 3.3vw;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 4.5vw;
  }
  .hero-img {
    top: 325px;
    right: 80px;
    max-width: 27rem;
  }

  h2.about-header {
    padding: 1% 1%;
    font-size: 3vw;
  }
  h3 {
    font-size: calc(1.3rem + 0.6vw);
  }

  .row picture {
    text-align: center;
    padding-bottom: 5%;
  }

  .cms-list {
    list-style: none;
    text-align: center;
  }

  .service-header {
    left: 170px;
    top: 75px;
  }

  footer div.row {
    text-align: center;
    line-height: 70px;
  }

  .text-end {
    text-align: center !important;
  }
}

@media (max-width: 425px) {
  .wrapper-brand {
    width: 45%;
  }
  .hamburger {
    top: 10px;
  }
  .wrapper-title {
    padding: 15% 0 0 0;
  }

  .hero-title {
    font-size: 6.5vw;
  }

  .hero-img {
    top: 345px;
    right: 0px;
    max-width: 25rem;
  }
  h2.about-header {
    font-size: 6vw;
    padding: 1% 2%;
  }

  .about-text {
    font-size: 1rem;
  }
  .about-img-container {
    width: 80%;
    margin: auto;
    padding-bottom: 2rem;
  }
  article {
    margin-bottom: 15%;
  }

  article .about-post {
    width: 100%;
    height: 100%;
    position: inherit;
  }

  .about-post header h3 {
    font-size: 1.2rem;
  }

  article h3 {
    padding: 0 0 10% 0;
  }

  .service-header {
    left: 55px;
    width: 75%;
    top: 50px;
  }

  #services div h2 {
    font-size: 3.9vw;
  }

  .contact-info {
    padding: 2%;
  }

  .brand-logo {
    width: 100%;
  }
}
