html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Manrope-Regular";
  font-size: 16px;
  vertical-align: baseline;
  box-sizing: border-box;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Medium";
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-bold";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope-Regular";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.container {
  width: 1280px;
  margin: 0 auto;
  position: relative;
}

h2.title {
  font-family: "Inter-Medium";
  font-size: 60px;
  color: #000;
}

.grey-section {
  background: #F5F5F5;
  padding: 100px 0;
}

.white-section {
  background: #fff;
  padding: 100px 0;
}

.button-more-white {
  padding: 12px 48px 12px 24px;
  color: #000;
  display: block;
  border-radius: 28px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  background: #fff url(/images/arrow.png) no-repeat 120px 8px;
  transition: 0.5s;
}
.button-more-white:hover {
  transition: 0.5s;
  background: #eee url(/images/arrow.png) no-repeat 125px 8px;
}

.button-more-black {
  padding: 12px 48px 12px 24px;
  color: #fff;
  display: block;
  border-radius: 28px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  background: #000 url(/images/arrow-white.png) no-repeat 140px 12px;
  transition: 0.5s;
}
.button-more-black:hover {
  transition: 0.5s;
  background: #292929 url(/images/arrow-white.png) no-repeat 145px 12px;
}

.banner-section {
  width: 100%;
  display: flex;
  background: url(/images/banner.jpg);
  height: 1080px;
  background-size: cover;
  position: relative;
}
.banner-section:after {
  width: 100%;
  height: 600px;
  background: rgb(2, 0, 36);
  background:linear-gradient(to bottom, #3eb65f, #ffffff)100%);
  bottom: 0;
  left: 0;
  position: absolute;
  content: "";
}
.banner-section .banner-cont {
  width: 1280px;
  margin: 700px auto 0 auto;
  display: flex;
  z-index: 1;
  justify-content: space-between;
  z-index: 1;
  position: relative;
}
.banner-section .banner-cont-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.banner-section .banner-cont-left h1 {
  font-size: 60px;
  color: #fff;
  font-family: "Inter-Medium";
  margin-bottom: 50px;
}
.banner-section .banner-cont-right {
  padding: 48px;
  width: 516px;
  height: 335px;
  margin-top: -70px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.banner-section .banner-cont-right__btn-green {
  background: #82BE64 url(/images/arrow-white.png) no-repeat center center;
  transition: 0.5s;
  width: 80px;
  height: 80px;
  border-radius: 70px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -12px;
  right: -8px;
  transition: 0.5s;
}
.banner-section .banner-cont-right__btn-green:hover {
  background-color: #000;
  transition: 0.5s;
  transform: rotate(45deg);
}
.banner-section .banner-cont-right:before {
  background: url(/images/banner-cont-bg.png) no-repeat top center;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 516px;
  height: 335px;
  opacity: 0.3;
}
.banner-section .banner-cont-right h2 {
  font-size: 40px;
  color: #fff;
  font-family: "Inter";
  margin-bottom: 30px;
}
.banner-section .banner-cont-right p {
  color: #fff;
}

.header {
  width: 100%;
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.header__main {
  max-width: 1280px;
  width: 100%;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transition: 0.5s;
}
.header .count-logo {
  height: 40px;
}
.header .header-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100%;
  transition: 0.5s;
  background: black;
  border-radius: 0;
}

.top-nav {
  display: flex;
}
.top-nav ul {
  display: flex;
}
.top-nav ul li {
  list-style: none;
  margin: 0 24px;
}
.top-nav ul li:last-child {
  margin-right: 0;
}
.top-nav ul li a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  font-family: "Inter";
}
.top-nav ul li a.contact {
  background: #fff;
  color: #000;
  border-radius: 32px;
  padding: 12px 24px;
}

.about-us-main {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-top: 30px;
}
.about-us-main__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.about-us-main__cont {
  width: 500px;
}
.about-us-main__cont p {
  margin-top: 40px;
}
.about-us-main__img {
  display: flex;
  gap: 30px;
  align-items: end;
  position: relative;
}
.about-us-main__img .about-img1 {
  width: 215px;
}
.about-us-main__img .about-img2 {
  width: 400px;
}
.about-us-main__btn-green {
  background: #82BE64 url(/images/arrow-white.png) no-repeat center center;
  transition: 0.5s;
  width: 50px;
  height: 50px;
  border-radius: 70px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 145px;
  left: -8px;
  transition: 0.5s;
}
.about-us-main__btn-green:hover {
  background-color: #000;
  transition: 0.5s;
  transform: rotate(45deg);
}

.our-journey-main {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.our-journey-main .our-journey-img1, .our-journey-main .our-journey-img2 {
  width: 430px;
}
.our-journey-main__cont {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
.our-journey-main__vision {
  display: flex;
  align-items: start;
  width: 60%;
  gap: 50px;
  position: relative;
}
.our-journey-main__vision > div > div {
  font-size: 32px;
}
.our-journey-main__vision > div > p {
  margin-top: 12px;
}
.our-journey-main__vision > div.box-cont {
  position: absolute;
  width: 500px;
  max-width: 100%;
  left: 232px;
  bottom: 40px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #E7E7E7;
  min-height: 205px;
}
.our-journey-main__vision > div.box-cont:before {
  width: 50px;
  height: 50px;
  background: #82BE64;
  position: absolute;
  top: -25px;
  left: 24px;
  content: "";
  border-radius: 25px;
}
.our-journey-main__vision > div.box-cont p {
  font-size: 14px;
}
.our-journey-main__mission {
  display: flex;
  width: 40%;
  flex-direction: column;
  align-items: end;
  gap: 50px;
  margin-top: -250px;
}
.our-journey-main__mission .box-cont {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #E7E7E7;
  position: relative;
  min-height: 205px;
  width: 500px;
  max-width: 100%;
}
.our-journey-main__mission .box-cont:before {
  width: 50px;
  height: 50px;
  background: #000;
  position: absolute;
  top: -25px;
  left: 24px;
  content: "";
  border-radius: 25px;
}
.our-journey-main__mission .box-cont > div {
  font-size: 32px;
}
.our-journey-main__mission .box-cont > p {
  margin-top: 12px;
  font-size: 14px;
}

.your-needs h2, .your-needs p {
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}
.your-needs__list-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: end;
  position: relative;
}
.your-needs__list-items > div {
  background: #fff;
  border: 1px solid #E7E7E7;
  padding: 24px;
  gap: 24px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  width: calc(33.33% - 20px);
  min-height: 261px;
  transition: 0.5s;
  cursor: pointer;
}
.your-needs__list-items > div:hover {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
.your-needs__list-items > div > div {
  font-size: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.your-needs__list-items > div p {
  margin: 0;
  text-align: left;
}
.your-needs__more-link {
  margin-left: 238px;
  background-position: 125px 12px;
}
.your-needs__more-link:hover {
  background-position: 130px 12px;
}

.we-serve__header h2, .we-serve__header p {
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}
.we-serve__slider {
  width: 100%;
  display: flex;
  gap: 30px;
}
.we-serve__slider-img {
  display: flex;
  position: relative;
  margin: 12px;
  font-size: 20px;
}
.we-serve__slider-img > div {
  font-size: 20px;
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 20px;
  font-family: "Inter-bold";
}
.we-serve__slider-img:after {
  width: 100%;
  height: 400px;
  background: rgb(2, 0, 36);
  background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(80, 248, 0, 0.5) 100%);
  bottom: 6px;
  left: 0;
  position: absolute;
  content: "";
  border-radius: 30px;
}
.we-serve__slider-img img {
  width: 100%;
}
.we-serve .slick-prev {
  position: absolute;
  left: 30px;
  top: 50%;
  z-index: 2;
  width: 28px;
  height: 56px;
  background: url(/images/slider-arrow-left.png) no-repeat center;
  border: 0;
  font-size: 0;
  cursor: pointer;
  transform: translateY(-50%);
}
.we-serve .slick-next {
  position: absolute;
  right: 30px;
  top: 50%;
  z-index: 2;
  width: 28px;
  height: 56px;
  background: url(/images/slider-arrow-right.png) no-repeat center;
  border: 0;
  font-size: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.why-count__cont {
  display: flex;
  justify-content: space-between;
}
.why-count__img1 {
  width: 430px;
  -o-object-fit: contain;
     object-fit: contain;
}
.why-count__list-bg {
  display: flex;
  width: 804px;
  height: 550px;
  background: url(/images/why-count-bg.png) no-repeat left top;
  padding: 75px 60px;
  flex-direction: column;
  margin-top: 60px;
  position: relative;
  background-size: contain;
}
.why-count__list-bg ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.why-count__list-bg ul li {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 24px 0;
  width: calc(50% - 40px);
  margin-top: -1px;
  list-style: none;
  font-size: 20px;
}
.why-count__list-bg ul li:nth-child(even) {
  margin-left: 80px;
}
.why-count__more-link {
  position: absolute;
  bottom: 85px;
  right: 60px;
  background-position: 125px 12px;
}
.why-count__more-link:hover {
  background-position: 130px 12px;
}
.why-count__btn-green {
  background: #82BE64 url(/images/arrow-white.png) no-repeat center center;
  transition: 0.5s;
  width: 80px;
  height: 80px;
  border-radius: 70px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: -8px;
  transition: 0.5s;
}
.why-count__btn-green:hover {
  background-color: #000;
  transition: 0.5s;
  transform: rotate(45deg);
}

.footer-nav {
  background: #9B9B9B;
  padding: 100px 0;
  display: flex;
}
.footer-nav__main {
  display: flex;
  justify-content: space-between;
}
.footer-nav .stay-connected {
  display: flex;
  gap: 30px;
  flex-direction: column;
  color: #fff;
}
.footer-nav .stay-connected__title {
  font-size: 20px;
}
.footer-nav .stay-connected ul {
  display: flex;
  gap: 20px;
}
.footer-nav .stay-connected ul li {
  list-style: none;
}
.footer-nav .stay-connected ul li a {
  width: 50px;
  height: 50px;
  display: flex;
}
.footer-nav .stay-connected ul li a.twitter {
  background: url("/images/twitter-icon.png") no-repeat 0 0;
}
.footer-nav .stay-connected ul li a.instagram {
  background: url("/images/insta-icon.png") no-repeat 0 0;
}
.footer-nav .stay-connected ul li a.linked-in {
  background: url("/images/linked-in-icon.png") no-repeat 0 0;
}
.footer-nav .stay-connected ul li a.facebook {
  background: url("/images/fb-icon.png") no-repeat 0 0;
}
.footer-nav .stay-connected ul li a:hover {
  background-position: -52px 0;
}
.footer-nav .useful-links {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.footer-nav .useful-links__title {
  font-size: 20px;
  margin-bottom: 18px;
}
.footer-nav .useful-links > div {
  display: flex;
  gap: 40px;
}
.footer-nav .useful-links > div ul li {
  list-style: none;
  padding: 12px 0;
}
.footer-nav .useful-links > div ul li a {
  color: #fff;
  text-decoration: none;
}
.footer-nav .useful-links > div ul li a:hover {
  color: #eee;
}
.footer-nav .footer-count {
  display: flex;
  flex-direction: column;
  color: #fff;
  gap: 30px;
}
.footer-nav .footer-count__title {
  font-size: 20px;
}
.footer-nav .footer-count__address {
  background: url("/images/location-icon.png") no-repeat left center;
  display: flex;
  padding-left: 30px;
}
.footer-nav .footer-count__subscribe {
  background: #fff;
  padding: 8px;
  display: flex;
  border-radius: 50px;
}
.footer-nav .footer-count__subscribe input {
  padding: 8px 24px;
  border: none;
  width: 100%;
}
.footer-nav .footer-count__subscribe button {
  background: #82BE64;
  color: #fff;
  padding: 8px 24px;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
}
.footer-nav .footer-count__subscribe button:hover {
  background: #000;
}

.footer {
  width: 100%;
  padding: 12px 0;
  background: #909090;
  color: #fff;
}
.footer .container {
  display: flex;
  justify-content: space-between;
}
.footer .container > div {
  font-size: 14px;
}
.footer .container > div ul {
  display: flex;
}
.footer .container > div ul li {
  list-style: none;
  padding: 0 12px;
}
.footer .container > div ul li:last-child {
  border-left: 1px solid #eee;
  padding-right: 0;
}
.footer .container > div ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: none;
}

.popup {
  width: 650px;
  height: 600px;
  position: fixed;
  background: #fff;
  z-index: 21;
  top: 50%;
  left: 50%;
  padding: 50px;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  display: none;
}
.popup__close-btn {
  width: 25px;
  height: 25px;
  right: 15px;
  top: 15px;
  position: absolute;
  transform: rotate(45deg);
  cursor: pointer;
}
.popup__close-btn:after, .popup__close-btn:before {
  width: 1px;
  height: 25px;
  background: #000;
  left: 15px;
  top: 0;
  content: "";
  position: absolute;
}
.popup__close-btn:after {
  transform: rotate(90deg);
}
.popup .main {
  gap: 20px;
  flex-direction: column;
  overflow: auto;
  height: 100%;
  display: none;
}
.popup .main.active {
  display: flex;
}
.popup .popup-img {
  position: relative;
}
.popup .popup-img img {
  width: 100%;
}
.popup .popup-img .title {
  position: absolute;
  left: 40px;
  bottom: 40px;
  color: #fff;
  z-index: 22;
}
.popup .popup-img:after {
  width: 100%;
  height: 300px;
  background: rgb(2, 0, 36);
  background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(80, 248, 0, 0.5) 100%);
  bottom: 6px;
  left: 0;
  position: absolute;
  content: "";
}
.popup .title {
  font-size: 40px;
  font-family: "Inter-Medium";
}
.popup .sub-title {
  font-size: 24px;
  font-family: "Inter-Medium";
}
.popup ul {
  margin-top: 12px;
}
.popup ul li {
  list-style: none;
}/*# sourceMappingURL=style.css.map */