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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (max-width: 75em) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 56.5em) {
  html {
    font-size: 48%;
  }
}

html {
  font-family: "Cairo", sans-serif;
}

.heading-primary {
  color: #EEEEEE;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.219);
}
.heading-primary__main {
  display: block;
  font-size: 10rem;
}
@media (max-width: 37.5em) {
  .heading-primary__main {
    font-size: 5rem;
  }
}
.heading-primary__sub {
  font-size: 2rem;
}
@media (max-width: 37.5em) {
  .heading-primary__sub {
    font-size: 1rem;
  }
}

.heading-secondary {
  color: #EEEEEE;
  text-align: center;
  font-size: 5em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.219);
}

.cairo-font {
  font-family: "Cairo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

.montserrat-font {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.header {
  height: 12vh;
  background-color: #393E46;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 0 5rem;
  width: 100%;
}
.header__logo {
  height: 100%;
}
.header__logo img {
  height: 100%;
}

.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 56.5em) {
  .container {
    flex-direction: column;
  }
}
@media (max-width: 37.5em) {
  .container {
    flex-direction: column;
  }
}

.col {
  text-align: center;
}

.footer {
  padding: 15rem 0rem;
  background-color: #393E46;
}
.footer__list {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  height: 30rem;
}
.footer__copyright {
  color: #EEEEEE;
}

.nav {
  height: 100vh;
}
.nav__list {
  list-style: none;
  display: none;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
}
.nav__item {
  display: inline-block;
  text-align: center;
  height: 5rem;
  margin-bottom: 2rem;
}
.nav__link {
  text-decoration: none;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.829);
  font-family: "Courier New", Courier, monospace;
  font-weight: bolder;
}
.nav__link:hover {
  border-bottom: 1px solid black;
}
.nav__background {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 0%;
  background-color: bisque;
  z-index: 10;
  overflow: hidden;
  transition: all 0.1s ease-in-out;
}
.nav__checkbox {
  display: none;
}
.nav__button {
  position: fixed;
  right: 5rem;
  top: 3rem;
  z-index: 20;
  display: inline-block;
  height: 5rem;
  width: 5rem;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  box-shadow: 1px 2px 3px black;
  cursor: pointer;
}
@media (max-width: 37.5em) {
  .nav__button {
    position: fixed;
    right: 9rem;
  }
}
.nav__button:hover .nav__icon {
  transform: translate(-50%, -3px);
}
.nav__icon {
  width: 2.5rem;
  height: 3px;
  border-radius: 3px;
  background-color: rgb(139, 253, 63);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}
.nav__checkbox:checked ~ .nav__background {
  width: 100%;
}
.nav__checkbox:checked ~ .nav__list {
  display: flex;
}
.nav__checkbox:checked ~ .nav__button .nav__icon {
  background-color: red;
}

.btn {
  background-color: #00ADB5;
  color: #EEEEEE;
  width: 15rem;
  height: 5rem;
  border-radius: 5px;
  border: none;
  font-family: "Cairo", sans-serif;
  font-size: 2rem;
  padding: 1rem;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.356);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.356);
}
.btn:active {
  transform: translateY(2px);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-white {
  background-color: #112D4E;
}

.card {
  display: inline-block;
  height: 50rem;
  width: 30rem;
  background-color: #00ADB5;
  border-radius: 5px;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.527);
  text-align: center;
  padding: 3rem 1rem;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 56.5em) {
  .card {
    margin-bottom: 2rem;
  }
}
.card__title {
  font-size: 3rem;
  color: #EEEEEE;
  margin-bottom: 3rem;
}
.card__paragraph {
  color: #EEEEEE;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
}
.card__icon {
  height: 10rem;
  padding: 1rem;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.527);
}

.section-hero {
  height: 88vh;
  background-image: linear-gradient(-45deg, rgba(0, 172, 181, 0.4588235294), #EEEEEE), url("../../images/muhammad-faiz-zulkeflee-CrfmU6jKCnY-unsplash.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  text-align: center;
}

.section-services {
  padding: 12rem 0rem;
  background-color: rgba(0, 172, 181, 0.4588235294);
}

.section-contacts {
  background-color: #00ADB5;
  padding: 15rem 0rem;
}

.contacts__img {
  height: 30rem;
}
.contacts__phone {
  display: flex;
}
.contacts__phone-icon {
  height: 5rem;
}
.contacts__phone-number {
  font-size: 4rem;
  color: #EEEEEE;
}
@media (max-width: 37.5em) {
  .contacts__phone-number {
    font-size: 2rem;
  }
}

.section-blogs {
  background-color: rgba(249, 249, 249, 0.137254902);
  padding: 5rem 5rem;
  text-align: center;
}
.section-blogs h2 {
  color: #000;
}

.blogs-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 5rem;
  padding: 2rem;
}

.blog-card {
  width: 30rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}
.blog-card:hover {
  transform: scale(1.05);
}
.blog-card img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.blog-content-section {
  padding: 5rem 10rem;
  text-align: right;
}
.blog-content-section h1 {
  color: #000;
  text-align: center !important;
  margin-bottom: 3rem;
}
.blog-content-section p {
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #333;
  font-size: 2rem;
}
.blog-content-section img {
  width: 50%;
  height: auto;
  margin: 2rem 0;
  border-radius: 10px;
  text-align: center;
}

.img-box {
  text-align: center;
}

.margin-bottom-m {
  margin-bottom: 5rem;
}

/*# sourceMappingURL=style.css.map */
