@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --yellow: #f5bf23;
  --black: #111;
  --white: #fff;
  --light-color: #666;
  --light-bg: #eee;
  --charchoal:#36454F;
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  --border:.1rem solid rgba(0,0,0.3);
}

* {
  font-family: "Poppins" sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-track {
  background: transparent;
}
html::-webkit-thumb {
  background: var(--yellow);
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}
.about {
  padding: 5rem 10%;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  border-radius: 0.5rem;
}
.btn:hover {
  background: var(--yellow);
  color: var(--black);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--box-shadow);
  padding: 1.5rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.navbar a {
  font-size: 2rem;
  color: var(--black);
  margin: 0 1rem;
}
.navbar a:hover {
  color: var(--yellow);
}

.icons div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-left: 0.3rem;
}
.icons div:hover {
  background: var(--black);
  color: var(--white);
}

#menu-btn {
  display: none;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  padding-left: 1rem;
  border-left: 1rem solid var(--yellow);
}

.search-form {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translate(-50%);
  width: 70rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  padding: 1rem;
  display: none;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 0.2s linear;
}
.search-form.active {
  display: flex;
}
.search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
}
.search-form label {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  margin: 0 1rem;
}
.search-form label:hover {
  color: var(--yellow);
}

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 35rem;
  background: var(--white);
  height: 100%;
  text-align: center;
  z-index: 1000;
  padding: 0 2rem;
  padding-top: 5rem;
  display: none;
}
.contact-info.active {
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  display: block;
}
.contact-info #close-contact-info {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 4rem;
  color: var(--black);
}
.contact-info #close-contact-info:hover {
  transform: rotate(90deg);
}
.contact-info .info {
  padding: 2rem 0;
}
.contact-info .info i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-bottom: 0.5rem;
}
.contact-info .info i:hover {
  background: var(--black);
  color: var(--white);
}
.contact-info .info h3 {
  font-size: 2rem;
  color: var(--black);
  padding: 1rem 0;
}
.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  text-transform: capitalize;
}
.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}
.contact-info .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin: 0 0.3rem;
}
.contact-info .share a:hover {
  background: var(--black);
  color: var(--white);
}

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.about .row .image {
  flex: 1 1 41rem;
}
.about .row .image img {
  width: 100%;
}
.about .row .image image {
  height: 100%;
}
.about .row .content {
  flex: 1 1 41rem;
}
.about .row h3 {
  font-size: 3.5rem;
  color: var(--black);
}
.about .row p {
  font-size: 1.5rem;
  color: var(--light-color);
  text-transform: capitalize;
}

.box-container {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}
.box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
}
.box-container .box h3 {
  font-size: 4rem;
  color: var(--black);
}
.box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  text-transform: capitalize;
  padding-top: 5rem;
}

.home {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  position: relative;
}

.open {
  font-size: 2.4rem;
  color: var(--black);
  color: var(--white);
  text-align: center;
  position: absolute;
  top: 24%;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}

.open1 {
  font-size: 1.5rem;
  color: var(--white);
  text-transform: capitalize;
  text-align: center;
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%; /* Adjust this to increase the width */
  padding: 0 10px; /* Optional: Adjust to add space around the sides */
}

.button-container {
  text-align: center;
  position: relative;
}

.button {
  display: inline-block;
  margin-top: 35rem;
  padding: 1rem 3rem;
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  background-color: transparent;
  border: 3px solid #FF8C42;
  border-radius: 0.5rem;
  transition: background-color 0.3s, color 0.3s;
}

.button:hover {
  background-color: #FF8C42;
  color: var(--white);
}

.home-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 60vh; /* Adjusted height for better display */
  margin-left: 0; /* Removed margin to align with the main container */
  margin-top: 0; /* Removed margin to align with the main container */
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 450px) {
  .home .open {
    font-size: 2rem;
  }
  .home .open1 {
    font-size: 1.4rem;
    margin-left: 0rem;
  }
  .button {
    font-size: 1.5rem;
    padding: 1rem 2.5rem;
  }
  .button-container > * + * {
    margin-left: 1rem;
  }
}
.services {
  padding: 5rem 10%;
}
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}
.services .box-container .box {
  text-align: center;
  padding: 1rem;
  background: var(--white);
  box-shadow: var(--light-color);
  border: var(--border);
}
.services .box-container .box img {
  width: 100%;
}
.services .box-container .box h3 {
  font-size: 2rem;
  color: var(--black);
  padding: 1rem 0;
}
.services .box-container .box p {
  font-size: 1.5rem;
  color: var(--black);
  padding: 1rem 0;
}
@media (max-width: 450px) {
  .services {
    padding: 2rem 5%;
  }
  .services .box-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .services .box-container .box {
    margin-bottom: 1rem;
  }
  .services .box-container .box .img {
    height: auto;
    width: 100%;
  }
  .services .box-container .box h3 {
    font-size: 2.1rem;
    color: var(--black);
  }
  .services .box-container .box p {
    font-size: 1.7rem;
    color: var(--black);
  }
  .services .btn {
    font-size: 1.9rem;
    padding: 0.5rem 1rem;
  }
}

.projects {
  padding: 5rem 10%;
}
.projects .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}
.projects .box-container .box {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border: var(--border);
}
.projects .box-container .box img {
  width: 100%;
}
.projects .box-container .box h3 {
  font-size: 2rem;
  color: var(--black);
  padding: 1rem 0;
}
.projects .box-container .box p {
  font-size: 2rem;
  color: var(--black);
  padding: 1rem 0;
}

.blog {
  padding: 5rem 10%;
  background-color: #f9f9f9;
}

.blog .heading {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.blog .swiper-slide {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.blog .swiper-slide:hover {
  transform: translateY(-10px);
}

.blog .swiper-slide p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog .info {
  margin-top: 20px;
}

.blog .info h3 {
  font-size: 1.7rem;
  color: #333;
  margin-bottom: 10px;
}

.blog .stars i {
  color: #FFD700;
  margin: 0 2px;
  font-size: 1.1rem;
}

.management {
  padding: 5rem 10%;
}
.management .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.management .row .image {
  flex: 1 1 41rem;
}
.management .row .image img {
  width: 100%;
}
.management .row .image image {
  height: 100%;
}
.management .row .content {
  flex: 1 1 41rem;
}
.management .row h1 {
  font-size: 2rem;
  color: var(--black);
}
.management .row p {
  font-size: 1.7rem;
  color: var(--light-color);
  text-transform: capitalize;
}

.footer {
  background-color: var(--charchoal);
  padding: 60px 20px;
  color: var(--light-bg);
  text-align: center;
  font-size: 1.3rem;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}

.footer .footer-brand,
.footer .footer-list,
.footer .social-list {
  flex: 1 1 200px;
  margin: 20px;
}

.footer .footer-brand .footer-text {
  margin-top: 20px;
}

.footer .footer-list-title {
  color: var(--white);
  margin-bottom: 16px;
}

.footer .footer-link {
  display: block;
  margin: 4px 0;
  color: var(--light-bg);
  text-decoration: none;
  transition: color 0.3s;
}

.footer .footer-link:hover {
  color: var(--yellow);
}

.footer .input-wrapper {
  position: relative;
  margin-top: 25px;
}

.footer .input-field {
  width: calc(100% - 120px);
  background-color: var(--yellow);
  color: var(--white);
  font-size: 1rem;
  padding: 16px 16px;
  border: none;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--box-shadow);
  outline: none;
}

.footer .input-field::placeholder {
  color: inherit;
}

.footer .submit-btn {
  background-color: var(--white);
  color: var(--black);
  padding: 14px 22px;
  border: none;
  border-radius: 0 8px 8px 0;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer .submit-btn:hover {
  background-color: var(--light-bg);
}

.footer .social-list {
  list-style: none;
  padding: 0;
  text-align: center; /* Center align the text */
  margin-top: 20px;
}

.footer .social-list .follow-us-text {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px; /* Add space between the text and icons */
  color: var(--white); /* Adjust the color as needed */
}

.footer .social-link {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer .social-link:hover {
  color: var(--yellow);
}

.gallery {
  background-color: var(--white);
  padding: 5rem 10%;
}
.gallery .heading {
  color: var(--black);
}
.gallery .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.gallery .box-container .box {
  cursor: initial;
}
.gallery .box-container .box .image {
  height: 40rem;
  overflow: hidden;
}
.gallery .box-container .box .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.gallery .box-container .box .content {
  display: flex;
  gap: 0.5rem;
  background: var(--white);
  justify-content: space-between;
}
.gallery .box-container .box .content .info {
  padding: 1rem 1rem;
}
.gallery .box-container .box .content h3 {
  font-size: 1.7rem;
  color: var(--black);
}
.gallery .box-container .box .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  text-transform: capitalize;
}
.gallery .box-container .box i {
  width: 5.5rem;
  font-size: 3rem;
  background: var(--yellow);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  line-height: 6.5rem;
}

.link {
  background: var(--white);
  padding: 5rem 10%;
}
.link .heading {
  color: var(--black);
}
.link .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.link .row .map {
  flex: 1 1 41rem;
  width: 100%;
}
.link .row form {
  flex: 1 1 41rem;
  background: var(--white);
  padding: 2rem;
}
.link .row form h3 {
  font-size: 2.5rem;
  color: var(--black);
}
.link .row form .box {
  margin: 0.7rem 0;
  width: 100%;
  padding: 1.5rem 0;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
}
.link .row form .box:focus {
  border-color: var(--yellow);
}
.link .row form textarea {
  height: 15rem;
  resize: none;
}

.news {
  padding: 5rem 10%;
}
.news img {
  width: 70%;
}
@media (max-width: 450px) {
  .news img {
    width: 110%;
  }
}
.news h2 {
  font-size: 2rem;
  color: var(--black);
}
.news p {
  font-size: 1.3rem;
  color: var(--light-color);
  text-transform: capitalize;
}
.news .btn {
  padding: 1rem 2rem;
}

.learn {
  padding: 5rem 10%;
}
.learn .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.learn .row .image {
  flex: 1 1 41rem;
}
.learn .row .image img {
  width: 100%;
}
.learn .row .image img {
  height: 100%;
}
.learn .row .content {
  flex: 1 1 41rem;
}
.learn .row h1 {
  font-size: 2rem;
  color: var(--black);
}
.learn .row p {
  font-size: 1.7rem;
  color: var(--light-color);
  text-transform: capitalize;
}

.news1 {
  padding: 5rem 10%;
}
.news1 img {
  width: 30%;
}

.heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: 3fr 2fr;
  }
}
.image-container {
  display: flex;
  justify-content: center;
}

.image-container img {
  border-radius: 0.75rem;
  width: 100%;
  max-width: 66.67%;
}

.content {
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
}

.content h1 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.content p {
  font-size: 1.125rem;
  color: #4a5568;
}

.content p.description {
  font-size: 1.875rem;
  color: #4a5568;
}

.content p.description strong {
  font-size: 1.875rem;
  color: #a0aec0;
}

.messages {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.messages li {
  color: white;
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header #menu-btn {
    display: inline-block;
    cursor: pointer;
    font-size: 2.5rem;
    padding: 1rem;
  }
  .navbar {
    display: none;
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
  }
  .navbar.active {
    display: block;
  }
  .navbar a {
    display: block;
    margin: 2rem;
  }
}
@media (max-width: 768px) {
  .header .search-form {
    width: 90%;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 65%;
  }
}

/*# sourceMappingURL=style.css.map */
