@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@700&family=Open+Sans&display=swap");

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
  background: #f7f7f7;

  --text-color--1: #202020;
  --text-color--2: #e7e7e7;
  --accent-color: #3FD341;

  color: var(--text-color--1);
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  font-family: "Bebas Neue", sans-serif;
}

p {
  margin: 0;
  padding: 0;
}

button {
  border: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ol,
ul {
  list-style: none;
}

/* Global */

main {
  position: relative;
  z-index: 0;
}

main > section {
  margin-bottom: 120px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.simple-text {
  color: #202020;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.btn {
  border-radius: 4px;
  background: var(--main, #3FD341);
  transition: 0.1s linear;
  color: #fff;
  padding: 15px 55px;
  text-align: center;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  cursor: pointer;
  box-sizing: border-box;
  display: block;
  text-align: center;
}

.btn:hover {
  background-color: var(--text-color--1);
}

.white-color {
  color: #fff;
}

.accent-color {
  color: var(--accent-color);
}

.form {
  border-radius: 10px;
  background-color: #fff;
  width: 431px;
  padding: 31px 30px 18px;
  box-sizing: border-box;
}

.form-inputs {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  display: block;
  padding: 0;
  box-sizing: border-box;
  height: 50px;
  padding-left: 13px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
}

.form-input:not(:last-child) {
  margin-bottom: 10px;
}

textarea.form-input {
  padding-top: 13px;
  height: 117px;
  resize: none;
}

.form-input,
.form-input::placeholder {
  color: #696969;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.submit-btn {
  width: 100%;
}

.section-heading {
  color: #202020;
  font-family: "Bebas Neue";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  main > section {
    margin-bottom: 100px;
  }

  .simple-text {
    font-size: 14px;
    line-height: 21px;
  }

  .btn {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 43.2px;
    letter-spacing: -0.7px;
  }

  .form {
    width: 100%;
    padding: 19px 19px 18px;
  }
}

/* Global end */

/* Pop up */

.pop-up-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* box-sizing: border-box; */
  z-index: 0;
}

.pop-up-menu {
  position: relative;
  left: 100vw;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  transition: 0.4s linear;
  height: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  overflow-y: scroll;
  padding-top: 24px;
}

.pop-up-menu .main-nav-link {
  color: #fff;
}
.pop-up-menu .container {
  height: 100%;
}

.x {
  position: absolute;
  top: 27px;
  right: 22px;
  cursor: pointer;
}

.pop-up__nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -36px;
}

.pop-up__nav .main-nav-link:not(:last-child) {
  display: block;
  margin-bottom: 30px;
}

/* Pop up end */

/* Header */

header {
  transition: 0.3s linear;
  background: rgba(247, 247, 247, 0.8);
  backdrop-filter: blur(4px);
  padding: 28px 0;
}

header .container {
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  width: 150px;
}

.logo-wrapper .logo {
  width: 100%;
}

.header__nav {
  display: flex;
  gap: 20px;
}

.main-nav-link {
  color: #202020;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}

.main-nav-link:hover {
  color: var(--accent-color);
}

.trigram {
  display: none;
  cursor: pointer;
  transition: 0.3s linear;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-phone span {
  color: #202020;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  transition: 0.5s;
}
.header-phone span:hover {
  color: #3FD341;
}
@media (max-width: 768px) {
  header .container {
    justify-content: space-between;
  }

  .logo-wrapper {
    width: 140px;
  }

  .header__nav {
    display: none;
  }

  .trigram {
    display: block;
  }
}

/* Header end */

/* Banner */

.banner {
  padding-bottom: 166px;
  color: var(--text-color--2);
  background: url(../img/banner-bg.png);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  margin-bottom: 120px;
  box-sizing: border-box;
}

.banner-content {
  padding-top: 87px;
  transition: 0.3s linear;
}

.banner-content .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.banner-text {
  padding: 0px;
  max-width: 454px;
  padding-left: 100px;
}

.banner-heading {
  margin-bottom: 10px;
  color: #fff;
  font-family: "Bebas Neue";
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.banner-text .simple-text {
  color: #fff;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  margin-bottom: 40px;
}

.banner-text .btn {
  margin-top: 40px;
  max-width: 210px;
}

.banner-form {
  padding-right: 42px;
}

@media (max-width: 768px) {
  .banner {
    padding-top: 16px;
    min-height: 100vh;
    margin-bottom: 100px;
  }

  .banner-content {
    padding-top: 106px;
  }

  .banner-text {
    margin: 0 auto;
  }

  .banner-heading {
    font-size: 52px;
    line-height: 62.4px;
    letter-spacing: -1px;
  }

  .banner-text .simple-text {
    margin-top: 9px;
  }

  .banner-text .btn {
    margin-top: 38px;
    max-width: 100%;
  }

  .banner-form {
    display: none;
  }
}

/* Banner */

/* Text with image section */

.text-with-image .container {
  display: flex;
  justify-content: center;
  gap: 76px;
}

.section-img .section-heading {
  display: none;
}

.section-img {
  width: 100%;
  max-width: 464px;
  min-width: 310px;
  height: 449px;
  margin: 0px;
}

.section-img-wrapper {
  width: 100%;
  height: 100%;
}

.section-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.section-text {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-text .simple-text:not(:last-of-type) {
  margin-bottom: 20px;
}

.section-text .btn {
  margin-top: 40px;
  width: 202px;
}

@media (max-width: 768px) {
  .text-with-image .container {
    flex-direction: column;
  }

  .twi--left-text .container {
    flex-direction: column-reverse;
  }

  .text-with-image .container > div:first-child {
    margin-right: 0;
  }

  .twi--left-text .container > div:first-child {
    margin-right: 0;
  }

  .section-img {
    max-width: unset;
    min-width: unset;
    width: 100%;
    min-height: 335px;
    height: auto;
    margin-bottom: 16px;
  }

  .section-text .section-heading {
    display: none;
  }

  .section-img .section-heading {
    display: block;
  }

  .section-text {
    max-width: unset;
  }

  .section-text .simple-text:not(:last-of-type) {
    margin-bottom: 9px;
  }

  .section-text .btn {
    width: 100%;
    margin-top: 30px;
  }
}

/* Text with image section end */

/* Services */

.services-list {
  display: flex;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.services-list:last-child {
  margin-bottom: 0;
}

.service-card {
  width: calc(25% - 34px);
  max-width: 276px;
  overflow: hidden;
  background-color: #fff;
  padding: 30px;
  padding-bottom: 25px;
  box-sizing: border-box;
  position: relative;
  min-height: 321px;
  color: var(--text-color--1);
}

.service-card:hover {
  box-shadow: 8px 14px 25px 4px rgba(34, 60, 80, 0.19);
}

.service-heading {
  color: #202020;
  font-family: "Bebas Neue";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.service-img-wrapper {
  width: 130%;
  overflow: hidden;
  margin: -30px -30px 30px;
}

.service-img-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 1060px) {
  .services-list {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(4, auto);
  }

  .service-img-wrapper {
    width: 175%;
  }

}

@media (max-width: 768px) {
  .services-list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(auto-fill, auto);
    gap: 20px;
  }

  .service-card {
    max-width: unset;
    padding: 20px;
    padding-bottom: 20px;
    min-height: 203px;
  }

  .service-heading {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 9px;
    letter-spacing: 0.2px;
  }

}

/* Services end */

/* Stages */

.stages-section {
  color: #fff;
  text-align: center;
  /* position: relative; */
}

.stages-section-top {
  background-image: url(../img/stages-bg.png);
  padding: 100px 0 179px;
}

.stages-section .simple-text {
  max-width: 636px;
}

.stages-section .container > * {
  margin-left: auto;
  margin-right: auto;
}

.stages-section .btn {
  margin-top: 41px;
  max-width: 202px;
}

.stages-section-bottom {
  margin-top: -121px;
}

.stages {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 30px;
}

.stage {
  background-color: #fff;
  border-radius: 4px;
  max-width: 380px;
  color: var(--text-color--1);
  padding: 20px 32px 30px;
}

.stage-heading {
  color: var(--accent-color) !important;
  margin-bottom: 10px;
}

.stage-title {
  font-size: 24px;
  line-height: 28.8px;
  margin-bottom: 19px;
}

@media (max-width: 768px) {
  .stages-section-top {
    padding: 95px 0 99px;
  }

  .stages-section-top > .container > .section-heading {
    margin-bottom: 36px;
  }

  .stages-section .btn {
    margin-top: 30px;
  }

  .stages-section-bottom {
    margin-top: 30px;
  }

  .stages {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stage {
    max-width: unset;
  }

  .stage-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 9px;
  }
}

/* Stages end */

/* Form section */

.form-section .container {
  display: flex;
  justify-content: center;
  gap: 109px;
}

.form-section-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 460px;
  margin: 0px;
  width: 100%;
}

.contact {
  display: flex;
  width: 100%;
}

.contacts .contact:not(:last-child) {
  margin-bottom: 20px;
}

.contact-icon-wrapper {
  margin-right: 11px;
}

.contact-text {
  max-width: 296px;
  text-transform: capitalize;
  color: var(--text-color--1);
}

#mail-link .contact-text {
  text-transform: none;
}

.contact:last-child:hover .contact-text {
  color: var(--accent-color);
  text-decoration: underline;
}

.form-container .section-heading {
  display: none;
}
.form-section .contact-text.simple-text {
  max-width: 100%;
}
@media (max-width: 768px) {
  .form-section {
    margin-top: -7px;
  }

  .form-section .container {
    flex-direction: column-reverse;
  }

  .form-section-text .section-heading {
    display: none;
  }

  .form-container .section-heading {
    display: block;
  }

  .contact-text {
    max-width: unset;
  }

  .form-container {
    margin-bottom: 30px;
  }
}

/* Form section end */

/* Footer */

footer {
  background-color: var(--text-color--1);
}

footer p {
  text-align: center;
  font-size: 12px;
  color: #fff;
  line-height: 38px;
}

/* Footer end */

main > section {
  padding-top: 120px;
  margin-bottom: 0px;
}
.banner {
  margin-bottom: 0px;
}

.banner-text a {
  color: #fff;
}
.btn a {
  color: #fff;
}
/* .services--additional{
	padding-bottom:120px;
} */

#contact {
  padding-bottom: 100px;
}
@media (max-width: 775px) {
  main > section {
    padding-top: 100px;
    margin-bottom: 0px;
  }
  .services--additional {
    padding-bottom: 00px;
  }
  .form-section-text {
    margin-bottom: 40px;
  }
  /* .services--additional{
		padding-bottom:0px;
	} */
  #contact {
    padding-bottom: 20px;
  }
}

.stages-section .section-heading {
  color: #fff;
}
.stages-section .simple-text {
  color: #fff;
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  max-width: 636px;
}

.stages-section .stage .simple-text {
  color: #000;
}

footer .bottom {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .bottom p {
  color: #fff;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  gap: 4px;
}
footer .bottom span,
footer .bottom a {
  color: #fff;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
footer .bottom .wrap {
  color: #fff;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  gap: 4px;
}
footer .bottom .wrap a {
  color: #fff;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

footer a {
  cursor: pointer;
  position: relative;
  z-index: 333;
  transition: 0.5s;
}
footer a:hover {
  color: #3FD341 !important;
}
.footer-image img {
  width: 100%;
  max-width: 431px;
}
.footer-image .section-heading {
  display: none;
}
@media (max-width: 1100px) {
  .banner-text {
    padding-left: 0px;
  }
  .banner-form {
    padding-right: 0px;
  }
}
@media (max-width: 777px) {
  header {
    padding: 20px 0;
  }
  .banner {
    padding-top: 0px;
  }
  .header-phone {
    display: none;
  }
  .banner-content .container {
    flex-direction: column;
    gap: 40px;
  }
  .banner-text {
    max-width: 100%;
  }
  .banner-text .simple-text {
    margin-top: 0px;
    font-size: 14px;
  }
  .banner-text .btn {
    max-width: 155px;
    padding: 15px 30px;
  }
  .banner-form {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .banner {
    padding-bottom: 250px;
    min-height: auto;
  }
  .banner-form {
    position: absolute;
    bottom: -200px;
    padding: 0 20px;
    width: calc(100% - 40px);
  }
  #service {
    padding-top: 300px;
  }
  .services-list {
    display: flex;
    flex-direction: column;
  }
  .service-card {
    width: 100%;
    min-height: auto;
  }
  .text-with-image .container {
    gap: 0;
  }
  .stages-section .btn {
    width: 100%;
    max-width: 100%;
  }
  #contact .simple-text {
    font-size: 13px;
  }
  .form-section .container {
    flex-direction: column;
    gap: 30px;
  }
  .form-section-text {
    margin-bottom: 80px;
  }
  .footer-image .section-heading {
    display: block;
  }
  .banner-content {
    padding-top: 20px;
  }
}

/*--- legal pages styles ---*/
.inner-page .banner {
  background: #f7f7f7;
  color: inherit;
  padding: 0px;
}
.privacy-policy-inner {
  padding: 80px 0 80px;
  background: #f7f7f7;
}
.privacy-policy-inner .top {
  margin-bottom: 40px;
}
.privacy-policy-inner .top h1 {
  margin: 0px;
  margin-bottom: 32px;
  color: #202020;
  font-family: "Bebas Neue";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  text-align: left;
}
.privacy-policy-inner .top h3 {
  text-align: left;
  color: #3FD341;
  font-family: "Bebas Neue";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.privacy-policy-inner .main-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  border-radius: 4px;
  background: #fff;
  padding: 80px;
}
.privacy-policy-inner .main-content .first-text p {
  color: #202020;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.privacy-policy-inner .main-content .item h2 {
  margin-bottom: 20px;
  color: #202020;
  font-family: "Bebas Neue";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.privacy-policy-inner .main-content .item .wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 40px;
  padding-right: 40px;
}
.privacy-policy-inner .main-content .item .mini-item p {
  color: #202020;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.privacy-policy-inner .main-content .item .mini-item p.strong {
  font-weight: 700;
  margin-bottom: 8px;
}
.privacy-policy-inner .main-content .item .mini-item p a {
  color: inherit;
  transition: 0.3s;
}
.privacy-policy-inner .main-content .item .mini-item p a:hover {
  color: #3FD341;
}
.privacy-policy-inner .main-content .item ul {
  padding: 0px !important;
}
.privacy-policy-inner .main-content .item li {
  margin-left: 25px;
  color: #202020;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  position: relative;
}
.privacy-policy-inner .main-content .item li:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  background: #828282;
  border-radius: 50%;
  position: absolute;
  left: -16px;
  top: 10px;
}
p.margin-bottom {
  margin-bottom: 8px !important;
}

@media (max-width: 990px) {
  footer .bottom {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
  }
  .privacy-policy-inner {
    padding: 60px 0;
  }
  .privacy-policy-inner .top {
    margin-bottom: 40px;
  }
  .privacy-policy-inner .top h1 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 120%;
  }
  .privacy-policy-inner .main-content {
    gap: 30px;
    padding: 15px;
  }
  .privacy-policy-inner .main-content .item h2 {
    font-size: 24px;
  }
  .privacy-policy-inner .main-content .item .wrap {
    gap: 15px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .privacy-policy-inner p,
  .privacy-policy-inner li {
    font-size: 14px !important;
  }
}

.element-animation {
  opacity: 0;
  transform: translateY(20px);
}

.element-animation.element-show {
  opacity: 1;
  transition: all 0.5s;
  transform: translateY(0%);
}

@media (min-width: 500px) and (max-width: 777px) {
  .footer-image img,
  .section-img-wrapper img {
    height: 100%;
    max-height: 400px;
    object-fit: contain;
    display: flex;
    justify-content: flex-start;
    max-width: max-content;
  }
}
@media (max-width: 500px) {
  .footer-image img,
  .section-img-wrapper img {
    max-width: 100%;
  }
}
