/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/

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

html {
  font-size: 62.5%;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #094ba1;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
}

.grid {
  display: grid;
}

.grid-center {
  align-items: center;
  justify-content: center;
}

.grid--2-cols {
  grid-template-columns: 1fr 1fr;
}

.grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
}

.container {
  max-width: 130rem;
  margin: 0 auto;
}

/* **************************** */
/* Hero Section */
/* **************************** */

.section-hero {
  background-color: #deebfd;
  height: 100vh;
  margin-bottom: 9.8rem;
}

.hero-container {
  height: 100%;
  gap: 2.4rem;
  padding: 0 1.6rem;
  grid-template-columns: 1fr 1fr;
}

.hero-header {
  max-width: 140rem;
  margin: 0 auto;
  font-family: "Old Standard TT", serif;
  font-size: 6.2rem;
  padding: 2.4rem 0 0 2.4rem;
  color: #f24b18;
  line-height: 0.3;
  margin-bottom: 0;
}

.hero-header-main {
  font-weight: 700;
  padding-bottom: 0;
}

.hero-header-sec {
  font-size: 1.8rem;
  padding-top: 0;
  letter-spacing: 1.4rem;
}

.hero-text {
  color: #094ba1;
  align-content: center;
}

.hero-title {
  font-size: 7.4rem;
  margin-bottom: 4.8rem;
  font-weight: 700;
  letter-spacing: -0.08rem;
}

.hero-description {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 6.4rem;
}

.button-hero {
  background-color: #f24b18;
  padding: 1.6rem 3.2rem;
  text-decoration: none;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5rem;
  border-radius: 0.5rem;
}

.button-hero:hover {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.501);
}

.hero-call {
  padding-left: 6rem;
  margin-bottom: 2rem;
}

.hero-number-text {
  font-size: 3rem;
  color: #f24b18;
  font-weight: 600;
}

.hero-tel-number {
  text-decoration: none;
  color: inherit;
}

.hero-tel-number:hover {
  letter-spacing: 0.5rem;
  font-weight: 800;
}

.hero-img {
  display: inline-block;
  /* filter: opacity(70%); */
  filter: sepia(70%) opacity(60%) brightness(50%) blur(1px);
  align-content: center;
}

.hero-img img {
  width: 100%;
}
/* **************************** */
/* Feature Section */
/* **************************** */

.section-feature {
  padding: 4.8rem;
  border-radius: 0.9rem;
}

.feature-items {
  grid-template-columns: repeat(5, 1fr);
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
}

.feature-heading {
  text-align: center;
  margin-bottom: 6.4rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  color: #f24b18;
}

.feature-text {
  font-size: 1.6rem;
}

/* **************************** */
/* About Section */
/* **************************** */

.section-about {
  padding: 9.6rem;
  max-width: 130rem;
  margin: 0 auto;
}

.about-heading {
  margin-bottom: 6.4rem;
}

.about-container {
  gap: 9.6rem;
  grid-template-columns: 1fr 1fr;
}

.about-text {
  font-size: 2.4rem;
  line-height: 1.8;
}

.about-list {
  list-style: none;
  font-size: 2rem;
  padding-top: 1.6rem;
  padding-left: 1rem;
  line-height: 1.8;
}

.about-icon {
  color: #f24b18;
  height: 1.6rem;
  width: 1.6rem;
}

.about-img img {
  width: 100%;
}

.about-tower {
  /* height: 30rem; */
  width: 60% !important;
  /* padding: 0 20%; */
}

/* **************************** */
/* Call Section */
/* **************************** */

.call-container {
  max-width: 120rem;
  background-color: #f24b18;
  color: #fff;
  margin: 9.6rem auto;
  border-radius: 0.9rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.276);
}

.call-heading {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  padding-top: 4.8rem;
  margin-bottom: 3.6rem;
}

.call-text {
  font-size: 2.4rem;
  padding: 0 6.4rem;
  margin-bottom: 3.6rem;
  line-height: 1.6;
}

.call-numbers-box {
  display: flex;
  justify-content: space-around;
  padding-bottom: 4.8rem;
}

.call-numbers {
  font-size: 2.4rem;
}

.call-numbers a {
  text-decoration: none;
  color: inherit;
  padding: 1.6rem 3.2rem;
}

.call-numbers a:hover {
  /* border: 1px solid #fff; */
  border-radius: 0.9rem;
  box-shadow: 0 0 2rem #fff;
}

/* **************************** */
/* footer Section */
/* **************************** */

footer {
  padding: 9.6rem;
  max-width: 130rem;
  margin: 0 auto;
  font-size: 1.4rem;
  border-top: 1px solid #ddd;
  grid-template-columns: 1fr 1fr;
}

.footer-heading {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
}

.logo-col {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

.footer-address {
  line-height: 1.4;
}

.footer-tel {
  margin-top: 1.6rem;
}

.footer-icon {
  color: #f24b18;
  padding-right: 1.4rem;
}

.footer-link {
  text-decoration: none;
  color: #094ba1;
}

.footer-link:hover {
  color: #f24b18;
}
