@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
@import url(./footer.css);
/* Pre sets */
:root {
  --yellow: #64c82a;
  --green: #64c82a;
  --black: #122241;
  --dark: #122241;
  --white: #fff;
  --light-color: #075f8e;
  --light-bg: #f5f5f5;
  --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;
  transition: all 0.1s linear;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: var(--yellow);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
}
.btn:hover {
  background: var(--yellow);
  color: var(--black);
}

section {
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 2.2rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--yellow);
}

.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.about .row .video {
  flex: 1 1 41rem;
}
.about .row .video video {
  width: 100%;
}
.about .row .content {
  flex: 1 1 41rem;
}
.about .row .content h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: capitalize;
}
.about .row .content p {
  padding: 1rem 0;
  text-transform: lowercase;
}
.about .box-container {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  align-items: center;
}
.about .box-container .box {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--light-bg);
}
.about .box-container .box h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
  color: var(--black);
}
.about .box-container .box p {
  color: var(--black) !important;
  font-size: 1.5;
  color: var(--light-color);
  text-transform: capitalize;
  line-height: 2;
}

.services {
  background: var(--white);
}
.services .myChart {
  top: 2rem;
  position: relative;
  margin: auto;
  max-height: 320px;
  min-width: 100%;
}
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}
.services .box-container .box {
  text-align: center;
  padding: 1rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border: var(--border);
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-around;
}
.services .box-container .box:hover {
  cursor: pointer;
}
.services .box-container .box span {
  font-size: 5rem;
  color: var(--black);
}
.services .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
  color: var(--black);
}
.services .box-container .box p {
  font-size: 1.4rem;
  color: var(--light-color);
  text-transform: capitalize;
  line-height: 2;
  color: var(--black);
}

.projects .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.projects .box-container .box {
  cursor: initial;
  box-shadow: var(--box-shadow);
}
.projects .box-container .box:hover .image img {
  transform: scale(1.1);
  cursor: pointer;
}
.projects .box-container .box .image {
  height: 36rem;
  overflow: hidden;
}
.projects .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects .box-container .box .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
}
.projects .box-container .box .content .info {
  padding: 1rem 2rem;
}
.projects .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
}
.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  text-transform: capitalize;
  line-height: 2;
}
.projects .box-container .box .content i {
  width: 6rem;
  height: 6rem;
  font-size: 3rem;
  background: var(--yellow);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  line-height: 6rem;
}

.reviews .slide p {
  padding: 1.5rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.5rem;
  color: var(--light-color);
  text-transform: capitalize;
  line-height: 2;
}
.reviews .slide p::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  height: 2rem;
  width: 2rem;
  background: var(--light-bg);
  transform: rotate(45deg);
}
.reviews .slide .user {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
}
.reviews .slide .user h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}
.reviews .slide .user .stars {
  padding-top: 0.5rem;
}
.reviews .slide .user .stars i {
  font-size: 2rem;
  color: var(--yellow);
}

.pricing {
  background: var(--light-bg);
}
.pricing .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}
.pricing .box-container .box {
  background: var(--white);
  text-align: center;
  padding: 2rem;
  border: var(--border);
  box-shadow: var(--box-shadow);
}
.pricing .box-container .box i {
  font-size: 3rem;
  width: 7rem;
  height: 7rem;
  line-height: 7rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: var(--yellow);
  color: var(--white);
}
.pricing .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  font-weight: normal;
  padding: 0.5rem 0;
}
.pricing .box-container .box .price {
  padding: 1rem 0;
  font-size: 5rem;
  color: var(--black);
  text-transform: capitalize;
}
.pricing .box-container .box .price span {
  font-size: 2rem;
}
.pricing .box-container .box .list {
  padding: 1rem 0;
}
.pricing .box-container .box .list p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  text-transform: capitalize;
  line-height: 2;
  color: var(--black) !important;
}

.contact {
  background: var(--white);
}
.contact .heading {
  color: var(--black);
}
.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.contact .row .map {
  flex: 1 1 41rem;
}
.contact .row form {
  min-width: 50%;
  display: flex;
  flex: 1 1 41rem;
  flex-direction: column !important;
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--light-bg);
}
.contact .row form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  padding-bottom: 1rem;
  color: var(--black);
  text-align: center;
}
.contact .row form .box,
.contact .row form textarea {
  display: block;
  margin: 0.7rem 0;
  min-width: 100%;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--border);
  font-size: 1.6rem;
  color: var(--light-color);
  background: var(--light-bg) !important;
}
.contact .row form .box:focus,
.contact .row form textarea:focus {
  border-color: var(--yellow);
}
.contact .row form textarea {
  height: 15rem;
  resize: none;
  background: var(--light-bg);
}

.blogs {
  background: var(--light-bg);
}
.blogs .swiper-wrapper {
  display: flex;
}
.blogs .swiper-wrapper .slide {
  width: 35rem;
  text-align: center;
}
.blogs .swiper-wrapper .slide:hover .image img {
  transform: scale(1.1);
}
.blogs .swiper-wrapper .slide .image {
  height: 25rem;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}
.blogs .swiper-wrapper .slide .image img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s linear;
}
.blogs .swiper-wrapper .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.2);
  background: var(--white);
  text-align: start;
}
.blogs .swiper-wrapper .slide .content h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}
.blogs .swiper-wrapper .slide .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  text-transform: capitalize;
  line-height: 2;
  color: var(--black);
}

.blog-container {
  display: flex;
  gap: 4rem;
  align-items: start;
  min-width: 100%;
}
.blog-container .blog-left img {
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-container .blog-left h1 {
  font-size: 3rem;
}
.blog-container .blog-left h2 {
  padding-top: 1rem;
}
.blog-container .blog-left p {
  max-width: 720px;
  font-size: 1.5rem;
}
.blog-container .blog-right {
  max-width: 480px;
  display: flex;
  gap: 0.2rem;
  flex-wrap: wrap;
  height: auto;
}
.blog-container .blog-right h2 {
  font-size: 3rem;
  line-height: 4.3rem;
}
.blog-container .blog-right .blog-thumb {
  width: 100%;
  height: auto;
}
.blog-container .blog-right .blog-thumb:hover {
  cursor: pointer;
  transform: scale(0.94);
}
.blog-container .blog-right .blog-thumb img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-container .blog-right .blog-thumb h3 {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
.blog-container .blog-right .blog-thumb .blog-subject {
  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;
  background: var(--white);
}
.header #menu-btn {
  display: none;
}
.header .logo {
  height: 70px;
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  font-weight: 800;
}
.header .logo span {
  color: var(--yellow);
}
.header .logo {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  font-weight: 800;
}
.header .logo span {
  color: var(--yellow);
}
.header .navbar a {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  margin: 0 1rem;
}
.header .navbar a:hover {
  color: var(--yellow);
}
.header .icons {
  display: flex !important;
}
.header .icons div {
  height: 4rem;
  width: 4rem;
  line-height: 4rem;
  font-size: 2rem;
  background: var(--light-bg);
  cursor: pointer;
  text-align: center;
  margin-left: 0.3rem;
  background-color: var(--yellow);
  border-radius: 50%;
  color: var(--white);
}
.header .icons div:hover {
  background: var(--black);
  color: var(--white);
}
.header .search-form {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  width: 70rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  padding: 1rem;
  gap: 1rem;
  align-items: center;
  animation: fadeIn 0.2s linear;
}
.header .search-form.active {
  display: flex;
}
.header .search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  background: var(--light-bg);
  color: var(--light-color);
}
.header .search-form label {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  margin: 0 1rem;
}
.header .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: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  display: none;
}
.contact-info.active {
  display: block;
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
}
.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 i {
  height: 4rem;
  width: 4rem;
  line-height: 4rem;
  font-size: 2rem;
  background: var(--light-bg);
  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);
  text-transform: capitalize;
  padding: 1rem 0;
}
.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  text-transform: capitalize;
  line-height: 2;
}
.contact-info .share {
  padding-top: 1rem;
  border-top: var(--border);
  margin-top: 1rem;
}
.contact-info .share a {
  height: 4rem;
  width: 4rem;
  line-height: 4rem;
  font-size: 2rem;
  background: var(--light-bg);
  cursor: pointer;
  text-align: center;
  margin: 0 0.3rem;
  color: var(--black);
}
.contact-info .share a:hover {
  background: var(--black);
  color: var(--white);
}

.home {
  padding: 0;
}
.home .slide {
  min-height: 60rem;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.home .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(30deg, rgba(9, 41, 14, 0.6117647059), transparent);
}
.home .slide .content {
  width: 50rem;
  position: relative;
}
.home .slide .content h3 {
  font-size: 5rem !important;
  text-transform: uppercase;
  color: var(--white);
}
.home .slide .content p {
  font-size: 1.4rem;
  color: var(--light-color);
  text-transform: capitalize;
  line-height: 2;
  padding: 1rem 0;
  color: var(--white);
}
.home .swiper-button-prev,
.home .swiper-button-next {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  font-size: 3rem;
  background: var(--white);
}
.home .swiper-button-prev:hover,
.home .swiper-button-next:hover {
  background: var(--yellow);
}
.home .swiper-button-prev::after,
.home .swiper-button-next::after {
  font-size: 2rem;
  color: var(--black);
}
.home .swiper-button-prev {
  right: 7rem;
}

@media (max-width: 1400px) {
  .header {
    padding: 1.5rem 2rem;
  }
  section {
    padding: 5rem 2rem;
  }
  .blog-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: start;
    width: 100%;
  }
  .blog-container .blog-left {
    width: 100%;
  }
  .blog-container .blog-left img {
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-container .blog-left h1 {
    font-size: 3rem;
  }
  .blog-container .blog-left h2 {
    padding: 1rem 0;
    font-size: 2rem;
  }
  .blog-container .blog-left p {
    max-width: 720px;
    font-size: 1.5rem;
  }
  .blog-container .blog-right {
    max-width: 20px;
  }
  .blog-container .blog-right h2 {
    font-size: 3rem;
    line-height: 6rem;
  }
  .blog-container .blog-right .blog-thumb:hover {
    cursor: pointer;
  }
  .blog-container .blog-right .blog-thumb img {
    max-width: 100%;
    height: 120px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-container .blog-right .blog-thumb h3 {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
  }
  .blog-container .blog-right .blog-thumb .blog-subject {
    color: var(--black);
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 5%;
  }
  .header #menu-btn {
    display: inline-block;
  }
  .header .logo {
    height: 40px !important;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0%;
    right: 0%;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    text-align: start;
  }
  .header .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    display: block;
    margin: 2rem;
  }
}
@media (max-width: 768px) {
  .header .search-form {
    width: 90%;
  }
  .header .login-form {
    width: 90%;
  }
  .home .slide {
    justify-content: center;
  }
  .home .slide .content {
    text-align: center;
  }
  .home .slide .content h3 {
    font-size: 3rem;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}
.login-form {
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 40rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  animation: fadeIn 0.2s linear;
}
.login-form.active {
  display: block;
}
.login-form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  text-transform: uppercase;
  text-decoration: underline;
}
.login-form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--black);
  margin: 0.7rem 0;
}
.login-form .flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}
.login-form .flex label {
  font-size: 1.4rem;
  color: var(--black);
  cursor: pointer;
}
.login-form .flex a {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-left: auto;
}
.login-form .flex a:hover {
  color: var(--yellow);
  text-decoration: underline;
}
.login-form .btn {
  width: 100%;
}
.login-form p {
  font-size: 1.5rem;
  color: var(--light-color);
  text-transform: capitalize;
  line-height: 2;
  padding-top: 1rem;
}
.login-form p a {
  color: var(--yellow);
}
.login-form p a:hover {
  text-decoration: underline;
}

@media (max-width: 380px) {
  .logo {
    height: 30px !important;
  }
}/*# sourceMappingURL=style.css.map */