/*===========  Responsive ==================*/
/*===== main styles ====*/
body {
  margin: 0rem;
  font-family: "Barlow", sans-serif;
  position: relative;
  overflow: hidden;
  transition: all 2s ease;
}

h1 {
  color: #027333;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px; /* 92% */
}
@media (max-width: 768px) {
  h1 {
    font-size: 38px;
  }
}

h2 {
  color: #027333;
  font-family: Barlow;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px; /* 115% */
}
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
}

p {
  color: #252525;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 16px;
}

@keyframes rotate {
  from {
    rotate: 0deg;
  }
  50% {
    scale: 1 1.5;
  }
  to {
    rotate: 360deg;
  }
}
.container {
  width: 1200px;
  margin: 0 auto;
  display: flex;
}
@media (max-width: 1200px) {
  .container {
    width: 96%;
    margin: 0 2%;
  }
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

.section, section {
  padding: 112px 0;
  transition: all 2s ease;
}

.button {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 32px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .button {
    margin-top: 16px;
    width: 100%;
  }
}
.button:hover {
  box-shadow: 0 1rem 2rem rgba(37, 37, 37, 0.85);
  transform: translateY(-2px);
  transition: all 0.2s;
}

#blob {
  background-color: white;
  height: 17vmax;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  background: linear-gradient(to right, #027333, #3FBF48);
  animation: rotate 20s infinite;
  opacity: 0.8;
}
@media (max-width: 768px) {
  #blob {
    display: none;
  }
}

#blur {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  -webkit-backdrop-filter: blur(6vmax);
  backdrop-filter: blur(6vmax);
}

/*===== header =====*/
header {
  position: relative;
  background-color: #f5f5f5;
  overflow: hidden;
  transition: all 2s ease;
}

.menu {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #00A651 0%, #006838 0.01%, #00A651 75%);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  transform: translateX(100%);
  transition: all 2s ease;
}
.menu.open {
  transform: translateX(0%);
}
.menu .container {
  justify-content: center;
  align-items: center;
}
.menu .navigation__links {
  flex-direction: column;
}
.menu .navigation__links a {
  color: #fff;
  font-size: 24px;
}

.navigation {
  display: flex;
  width: 1200px;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 3px 6px 0px rgba(37, 37, 37, 0.4);
  padding: 16px 24px;
  border-radius: 50px;
  position: fixed;
  left: 50%;
  top: 32px;
  transform: translate(-50%, 0);
  z-index: 9999;
  transition: all 2s ease;
}
@media (max-width: 1200px) {
  .navigation {
    width: 96%;
    margin-right: 4%;
  }
}
@media (max-width: 567px) {
  .navigation {
    top: 16px;
  }
}
.navigation img {
  width: 60px;
}
.navigation__links {
  display: flex;
  gap: 16px;
}
@media (max-width: 567px) {
  .navigation__links {
    display: none;
  }
}
@media (max-width: 567px) {
  .navigation__links.menu__links {
    display: flex;
  }
}
.navigation__links-item {
  display: inline-block;
  padding-bottom: 0.1rem; /* defines the space between text and underline */
  cursor: pointer;
}
.navigation__links-item a {
  text-decoration: none;
  color: #252525;
  position: relative;
}
.navigation__links-item a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #39b54a;
  transition: width 0.35s ease-out;
  cursor: pointer;
}
.navigation__links-item a:hover::before {
  width: 100%;
}
.navigation__links-item:hover a::before {
  width: 100%;
}
.navigation__links-item .active::before {
  width: 100%;
}
.navigation__hamburger {
  display: none;
  width: 32px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media (max-width: 567px) {
  .navigation__hamburger {
    display: flex;
  }
}
.navigation__hamburger span {
  width: 100%;
  height: 3px;
  background-color: #252525;
  transform-origin: left;
  transition: all 2s ease;
}
.navigation__hamburger.active span:first-child {
  background-color: #252525;
  transform: rotate(45deg);
}
.navigation__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navigation__hamburger.active span:last-child {
  background-color: #252525;
  transform: rotate(-45deg);
}

.hero {
  z-index: 4;
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero__left {
  flex: 1;
}
@media (max-width: 768px) {
  .hero__left {
    order: 2;
  }
}
.hero__left-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .hero__left-buttons {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
}
.hero__left-buttons .hire {
  background-color: #027333;
  color: #fff;
}
.hero__left-buttons .chat {
  border: solid 1px #3FBF48;
  color: #252525;
}
.hero__left-buttons .chat:hover {
  background-color: #fff;
}
.hero__right {
  flex: 1;
  position: relative;
}
@media (max-width: 768px) {
  .hero__right {
    padding-top: 48px;
  }
}
.hero__right img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*====== Custom design =====*/
.custom {
  background-color: rgba #fff;
}
.custom .container {
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 4;
}
.custom__left {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.custom__right {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .custom__right {
    width: 100%;
  }
}
.custom__right .responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 -> 9/16x100 */
  overflow: hidden;
  width: 100%;
  box-shadow: 0px 3px 6px 0px rgba(37, 37, 37, 0.4);
}
@media (max-width: 768px) {
  .custom__right .responsive-video {
    padding-bottom: 0;
  }
}
.custom__right .responsive-video .video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0px 3px 6px 0px rgba(37, 37, 37, 0.4);
}
@media (max-width: 768px) {
  .custom__right .responsive-video .video {
    position: relative;
    height: 350px;
  }
}
@media (max-width: 567px) {
  .custom__right .responsive-video .video {
    height: 200px;
  }
}

/*====features======*/
.features {
  background: linear-gradient(180deg, #fff 25%, #00A651 0%, #006838 0.01%, #00A651 75%, #fff 25%);
  transition: all 2s ease;
}
@media (max-width: 1200px) {
  .features {
    background: linear-gradient(180deg, #00A651 0%, #006838 0.01%, #00A651 75%);
  }
}
.features .container {
  align-items: center;
}
.features__left, .features__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.features__center {
  flex: 1;
}
.features__center img {
  width: 100%;
}
.features__paragraph {
  margin-top: 8px;
  color: #fff;
}

/*====== Portfolio ======*/
.portfolio__heading p {
  margin-top: 0px;
}
.portfolio .container {
  flex-direction: column;
  gap: 48px;
}
.portfolio .container > :nth-child(2) {
  background-color: #154700;
}
.portfolio .container > :nth-child(3) {
  background-color: #2E3192;
}
.portfolio .container > :nth-child(4) {
  background-color: rgba(194, 36, 41, 0.96);
}
.portfolio .container > :nth-child(5) {
  background-color: #5F9E11;
}
.portfolio__item {
  display: flex;
  padding: 32px 48px;
  border-radius: 50px;
  min-height: 500px;
}
@media (max-width: 768px) {
  .portfolio__item {
    min-height: 250px;
    border-radius: 10px;
  }
}
.portfolio__item-left, .portfolio__item-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 567px) {
  .portfolio__item-right {
    display: none;
  }
}
.portfolio__item-logo {
  width: 48px;
}
.portfolio__item p {
  color: #fff;
}
.portfolio .item-2 {
  overflow: hidden;
}
.portfolio .item-2 .portfolio__item-left {
  order: 2;
  position: relative;
}
.portfolio .item-2 .portfolio__item-left a {
  position: absolute;
  top: 20px;
  left: 0;
  display: flex;
  justify-content: center;
  transform: scale(1) !important;
  transition: all 5s ease-in-out;
}
.portfolio .item-2 .portfolio__item-left a:hover {
  margin-top: -1550px;
}
.portfolio .item-2 .portfolio__item-left a img {
  width: 70%;
}
.portfolio .item-3 .portfolio__item-right img {
  width: 150px;
}
.portfolio .item-4 .portfolio__item-left {
  order: 2;
  position: relative;
}
.portfolio .item-4 .portfolio__item-left img {
  width: 100%;
}
@media (max-width: 567px) {
  .portfolio .item-4 .portfolio__item-left img {
    width: 100%;
  }
}
.portfolio__img {
  width: 100%;
}
.portfolio__button {
  color: #252525;
  background-color: #fff;
  width: 150px;
}
@media (max-width: 768px) {
  .portfolio__button {
    width: 100%;
  }
}

/*====== Testimonials ========*/
.testimonials {
  background-color: #f5f5f5;
}
.testimonials__heading p {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .testimonials {
    padding-top: 0px;
  }
}
.testimonials__items {
  display: flex;
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 992px) {
  .testimonials__items {
    flex-direction: column;
    gap: 80px;
  }
}
@media (max-width: 768px) {
  .testimonials__items {
    padding-top: 32px;
  }
}
.testimonials .container {
  gap: 20px;
  position: relative;
  flex-direction: column;
}
.testimonials__item {
  background-color: #fff;
  border-radius: 50px;
  padding: 32px;
  box-shadow: 0px 3px 6px 0px rgba(37, 37, 37, 0.4);
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.testimonials__item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.testimonials__item-top h3 {
  color: #252525;
  font-weight: bold;
  margin-left: 100px;
}
.testimonials__item-top .qoute img {
  width: 26px;
}
.testimonials__item-img {
  width: 112px;
  border-radius: 50%;
  position: absolute;
  top: -80px;
  left: -32px;
  box-shadow: 0px 3px 6px 0px rgba(37, 37, 37, 0.4);
}

/*====== about ========*/
.about {
  padding: 112px 0 0 0;
  background: linear-gradient(180deg, #f5f5f5 30%, #252525 0%);
}
@media (max-width: 992px) {
  .about {
    background: #252525;
    padding: 48px 0 48px 0;
  }
}
.about .container {
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .about .container {
    justify-content: center;
  }
}
.about__left {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__left img {
  width: 70%;
  background-color: #37A63E;
  border-radius: 25px 25px 0 0;
  padding: 10px 10px 0px;
}
@media (max-width: 992px) {
  .about__left img {
    width: 100%;
  }
}
.about__right {
  flex: 3;
  align-self: flex-end;
  padding-bottom: 48px;
}
@media (max-width: 992px) {
  .about__right {
    padding-bottom: 0;
    align-self: center;
  }
}
.about__right h2 {
  color: #3FBF48;
}
.about__right p {
  color: #fff;
}
.about__right .button {
  color: #fff;
}
.about__right .button:hover {
  box-shadow: 0 1rem 2rem rgba(55, 166, 62, 0.3);
}
.about__right .hire {
  background-color: #37A63E;
}
.about__right .chat:hover {
  background-color: transparent;
}

/*====== Faq ========*/
.faq {
  background-color: #f5f5f5;
}
.faq .container {
  gap: 20px;
  align-items: center;
}
.faq__left {
  flex: 2;
}
.faq__left img {
  width: 100%;
}
@media (max-width: 992px) {
  .faq__left {
    flex: 2;
  }
}
.faq__right {
  flex: 3;
}
.faq__right .accordion {
  margin-top: 24px;
}
.faq__right .accordion .accordion-item {
  padding: 8px 24px;
  background-color: #fff;
  margin-bottom: 8px;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .faq__right .accordion .accordion-item {
    border-radius: 10px;
  }
}
.faq__right .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 16px 0;
  color: #252525;
  font-size: 16px;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.faq__right .accordion button:hover, .faq__right .accordion button:focus {
  cursor: pointer;
  color: #37A63E;
}
.faq__right .accordion button:hover::after, .faq__right .accordion button:focus::after {
  cursor: pointer;
  color: #37A63E;
  border: 1px solid #37A63E;
}
.faq__right .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 16px;
  right: -5px;
  width: 16px;
  height: 16px;
  color: #37A63E;
}
@media (max-width: 768px) {
  .faq__right .accordion button .icon {
    right: -10px;
  }
}
.faq__right .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.faq__right .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.faq__right .accordion button[aria-expanded=true] {
  color: #37A63E;
}
.faq__right .accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.faq__right .accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.faq__right .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
  border-top: solid 0.1px rgba(119, 119, 119, 0.3);
}
.faq__right .accordion .accordion-content p {
  font-size: 16px;
  font-weight: 300;
  margin: 16px 0;
  color: #777;
}

/*====== Contact us ========*/
.contact {
  background-color: #006838;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .contact__container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
}
@media (max-width: 992px) {
  .contact .contact__container {
    width: 96%;
    margin: 0 2%;
  }
}
.contact__heading h2, .contact__heading p {
  color: #fff !important;
}
.contact .form {
  width: 100%;
}
.contact .form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}
.contact .form__label {
  color: #fff;
  width: 100%;
}
.contact .form__input {
  width: 100%;
  padding: 16px 16px;
  border-radius: 5px;
  border: none;
}
.contact .form__button {
  width: 100%;
  background-color: #252525;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
@media (max-width: 768px) {
  .contact .form__button {
    margin-top: 0;
  }
}
.contact .form .errors {
  display: block;
  color: red;
  margin-top: 5px;
}
.contact .form .error {
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  box-shadow: 0 0 15px 0 rgb(255, 36, 0);
}

/*====== Footer ========*/
.footer {
  padding: 16px 0;
  background-color: #252525;
}
.footer .container {
  align-items: center;
  justify-content: center;
}
.footer .container p {
  margin: 0;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .footer .container p {
    font-size: 10px;
  }
}

.rotate {
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

.contact__form-icon {
  width: 24px;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.success {
  background-color: #3FBF48 !important;
}

.error {
  background-color: red !important;
}

/*=======dark mode =======*/
.dark {
  transition: all 2s ease;
}
.dark header, .dark .portfolio, .dark .testimonials, .dark .faq {
  background-color: #171717 !important;
}
.dark .navigation, .dark .custom {
  background-color: #292929;
}
.dark .navigation li a, .dark .custom li a {
  color: rgba(255, 255, 255, 0.8);
}
.dark h1, .dark h2 {
  color: #3FBF48;
}
.dark p {
  color: rgba(255, 255, 255, 0.8);
}
.dark .chat {
  color: rgba(255, 255, 255, 0.8);
  background-color: #171717;
}
.dark .chat:hover {
  background-color: #292929;
}
.dark .features {
  background: linear-gradient(180deg, #292929 25%, #00A651 0%, #006838 0.01%, #00A651 75%, #171717 25%);
}
@media (max-width: 567px) {
  .dark .features {
    background: linear-gradient(180deg, #00A651 0%, #006838 0.01%, #00A651 75%);
  }
}
.dark .testimonials__item {
  background-color: #292929;
  box-shadow: none;
}
.dark .testimonials__item h3 {
  color: #3FBF48;
}
.dark .about {
  background: linear-gradient(180deg, #171717 30%, #252525 0%);
}
.dark .faq__right .accordion .accordion-item {
  background-color: #292929;
}
.dark .faq__right .accordion button {
  color: rgba(255, 255, 255, 0.8);
}
.dark .navigation__hamburger span {
  background-color: rgba(255, 255, 255, 0.8);
}
.dark .navigation__hamburger.active span {
  background-color: rgba(255, 255, 255, 0.8);
}

.theme__toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  z-index: 9999;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #171717;
  transition: all 2s ease;
  cursor: pointer;
}

.theme__toggle img {
  height: 30px;
  width: 30px;
  transition: all 2s ease-in-out;
}

/*====== animations ========*/
/*== FadeInLeft ==*/
.hero .hidden, .custom .hidden, .features__left .hidden {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 2s ease-in-out;
}
.hero .show, .custom .show, .features__left .show {
  opacity: 1;
  transform: translateX(0);
}

/*== FadeInRight ==*/
.features__right .hidden, .about .hidden {
  opacity: 0;
  transform: translateX(20px);
  transition: all 1s ease-in-out;
}
.features__right .show, .about .show {
  opacity: 1;
  transform: translateX(0);
}

/*== FadeInTop ==*/
.features__center .hidden {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1s ease-in-out;
}
.features__center .show {
  opacity: 1;
  transform: translateY(0);
}

/*== FadeInBottom ==*/
.faq .hidden, .contact .hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-in-out;
}
.faq .show, .contact .show {
  opacity: 1;
  transform: translateY(0);
}

/*== Scale ==*/
.portfolio .hidden {
  opacity: 0.5;
  transform: scale(0.8);
  transition: all 1.5s ease-in-out;
}
.portfolio .show {
  opacity: 1;
  transform: scale(1);
}/*# sourceMappingURL=style.css.map */