* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Kumbh Sans", sans-serif;
}

h1,
h2,
h4 {
  font-family: "Syne", sans-serif;
}

h3 {
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
}

p {
  color: #747577;
}

a {
  text-decoration: none;
  color: #151a24;
}

li {
  list-style-type: none;
}

button,
input,
textarea,
select {
  outline: none;
  border: none;
  background: none;
  font-family: inherit;
  color: #151a24;
}

button {
  cursor: pointer;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.container {
  margin: auto;
  width: 90%;
  max-width: 1320px;
}

.btn {
  border-radius: 100px;
  transition: all 0.3s ease;
}

.btn-primary {
  border: 2px solid transparent;
  background: #1e54fe;
  font-weight: 700;
  color: #ffffff;
}
.btn-primary:hover {
  border-color: #1e54fe;
  background: transparent;
  color: #1e54fe;
}

.btn-secondary {
  border: 2px solid #1e54fe;
  font-weight: 700;
  color: #1e54fe;
}
.btn-secondary:hover {
  border-color: transparent;
  background: #1e54fe;
  color: #ffffff;
}

.navigation-bar-component {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: center;
}
.navigation-bar-component .container {
  position: relative;
  height: 100px;
  padding: 0 50px;
  background: #ffffff;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar-component .container {
    height: 80px;
    padding: 0 30px;
  }
}
.navigation-bar-component .container .logo-img-wrapper {
  display: flex;
}
.navigation-bar-component .container .logo-img-wrapper img {
  width: 120px;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar-component .container .logo-img-wrapper img {
    width: 100px;
  }
}
.navigation-bar-component .container .hamburger-menu-open-btn {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar-component .container .hamburger-menu-open-btn {
    display: flex;
  }
}
@media only screen and (max-width: 1024px) {
  .navigation-bar-component .container .navigation-bar-component-elements {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }
  .navigation-bar-component .container .navigation-bar-component-elements.active {
    transform: translateX(0);
  }
}
.navigation-bar-component .container .navigation-bar-component-elements .hamburger-menu-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  display: none;
}
@media only screen and (max-width: 1220px) {
  .navigation-bar-component .container .navigation-bar-component-elements .hamburger-menu-close-btn {
    display: flex;
  }
}
.navigation-bar-component .container .navigation-bar-component-elements .navigation-bar-component-elements-left {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1024px) {
  .navigation-bar-component .container .navigation-bar-component-elements .navigation-bar-component-elements-left {
    position: static;
    transform: translate(0);
  }
}
.navigation-bar-component .container .navigation-bar-component-elements .navigation-bar-component-elements-left ul {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar-component .container .navigation-bar-component-elements .navigation-bar-component-elements-left ul {
    flex-direction: column;
    align-items: center;
  }
}
.navigation-bar-component .container .navigation-bar-component-elements .navigation-bar-component-elements-left ul li {
  margin-right: 40px;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar-component .container .navigation-bar-component-elements .navigation-bar-component-elements-left ul li {
    margin-bottom: 30px;
    margin-right: 0;
  }
}
.navigation-bar-component .container .navigation-bar-component-elements .navigation-bar-component-elements-left ul li:last-child {
  margin-right: 0;
}
.navigation-bar-component .container .navigation-bar-component-elements .navigation-bar-component-elements-left ul li a {
  position: relative;
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.navigation-bar-component .container .navigation-bar-component-elements .navigation-bar-component-elements-left ul li a:hover {
  color: #1e54fe;
}
.navigation-bar-component .container .navigation-bar-component-elements .navigation-bar-component-elements-left ul li a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80%;
  height: 2px;
  background: #1e54fe;
  opacity: 0;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .navigation-bar-component .container .navigation-bar-component-elements .navigation-bar-component-elements-left ul li a::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.navigation-bar-component .container .navigation-bar-component-elements .navigation-bar-component-elements-left ul li a.active {
  font-weight: 800;
  color: #1e54fe;
}
.navigation-bar-component .container .navigation-bar-component-elements .navigation-bar-component-elements-left ul li a.active::after {
  opacity: 1;
}
.navigation-bar-component .container .navigation-bar-component-elements .cta-btn {
  width: 178px;
  height: 50px;
  font-size: 15px;
}

.footer-component {
  width: 100%;
  padding: 80px 0;
  background: #151a24;
}
.footer-component .container .footer-component-top {
  width: 100%;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.4);
  display: grid;
  grid-template-columns: 4fr 1fr 1fr;
  grid-gap: 200px;
}
@media only screen and (max-width: 1024px) {
  .footer-component .container .footer-component-top {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
  }
}
@media only screen and (max-width: 678px) {
  .footer-component .container .footer-component-top {
    grid-template-columns: 1fr;
  }
}
.footer-component .container .footer-component-top .part {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .footer-component .container .footer-component-top .part:first-child {
    grid-column: 1/-1;
  }
}
.footer-component .container .footer-component-top .part h2 {
  margin-bottom: 20px;
  font-size: 32px;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .footer-component .container .footer-component-top .part h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 678px) {
  .footer-component .container .footer-component-top .part h2 {
    text-align: center;
  }
}
.footer-component .container .footer-component-top .part h2 span {
  color: #1e54fe;
}
.footer-component .container .footer-component-top .part p {
  font-size: 15px;
  line-height: 25px;
}
@media only screen and (max-width: 678px) {
  .footer-component .container .footer-component-top .part p {
    text-align: center;
  }
}
.footer-component .container .footer-component-top .part h4 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .footer-component .container .footer-component-top .part h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 678px) {
  .footer-component .container .footer-component-top .part h4 {
    text-align: center;
  }
}
.footer-component .container .footer-component-top .part a {
  margin-bottom: 5px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 15px;
  line-height: 25px;
  color: #747577;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 678px) {
  .footer-component .container .footer-component-top .part a {
    width: 100%;
    text-align: center;
  }
}
.footer-component .container .footer-component-top .part a:hover {
  color: #ffffff;
}
.footer-component .container .footer-component-top .part a:last-child {
  margin-bottom: 0;
}
.footer-component .container .footer-component-bottom {
  width: 100%;
  padding-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 678px) {
  .footer-component .container .footer-component-bottom {
    flex-direction: column;
  }
}
.footer-component .container .footer-component-bottom p {
  font-size: 15px;
  line-height: 25px;
  text-align: center;
}
@media only screen and (max-width: 678px) {
  .footer-component .container .footer-component-bottom p {
    order: 2;
    margin-top: 25px;
    text-align: center;
  }
}
.footer-component .container .footer-component-bottom .social-links {
  display: flex;
  align-items: center;
}
.footer-component .container .footer-component-bottom .social-links a {
  margin-right: 25px;
  display: flex;
}
.footer-component .container .footer-component-bottom .social-links a:last-child {
  margin-right: 0;
}
.footer-component .container .footer-component-bottom .social-links a svg path {
  transition: all 0.3s ease;
}
.footer-component .container .footer-component-bottom .social-links a:hover svg path {
  fill: #1e54fe;
}

.landing-page {
  overflow: hidden;
}
.landing-page .hero-section {
  width: 100%;
  padding: 350px 0;
  background: url("../images/pages/landing-page/hero-section-bg-img-1.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section {
    padding: 250px 0;
  }
}
.landing-page .hero-section .container h1 {
  font-size: 100px;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section .container h1 {
    font-size: 75px;
  }
}
@media only screen and (max-width: 678px) {
  .landing-page .hero-section .container h1 {
    font-size: 55px;
  }
}
.landing-page .hero-section .container h1 span {
  font-weight: 700;
}
.landing-page .about-section {
  width: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
}
.landing-page .about-section .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 100px;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .about-section .container {
    grid-template-columns: 1fr;
    grid-gap: 75px;
  }
}
.landing-page .about-section .container .left {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .landing-page .about-section .container .left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.landing-page .about-section .container .left h3 {
  margin-bottom: 20px;
  font-size: 16px;
  color: #1e54fe;
}
@media only screen and (max-width: 1024px) {
  .landing-page .about-section .container .left h3 {
    text-align: center;
  }
}
.landing-page .about-section .container .left h2 {
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 400;
}
@media only screen and (max-width: 1024px) {
  .landing-page .about-section .container .left h2 {
    font-size: 42px;
    text-align: center;
  }
}
.landing-page .about-section .container .left h2 span {
  font-weight: 700;
}
.landing-page .about-section .container .left p {
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 27px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .about-section .container .left p {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }
}
.landing-page .about-section .container .left button {
  width: 178px;
  height: 55px;
  font-size: 17px;
}
.landing-page .about-section .container .right {
  width: 100%;
}
.landing-page .about-section .container .right .box {
  margin-bottom: 50px;
  width: 100%;
  display: grid;
  grid-template-columns: 50px auto;
  grid-gap: 35px;
}
@media only screen and (max-width: 678px) {
  .landing-page .about-section .container .right .box {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
}
.landing-page .about-section .container .right .box:last-child {
  margin-bottom: 0;
}
.landing-page .about-section .container .right .box .box-img-wrapper {
  width: 100%;
  display: flex;
}
@media only screen and (max-width: 678px) {
  .landing-page .about-section .container .right .box .box-img-wrapper {
    justify-content: center;
  }
}
.landing-page .about-section .container .right .box .box-img-wrapper img {
  width: 50px;
}
.landing-page .about-section .container .right .box .box-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 678px) {
  .landing-page .about-section .container .right .box .box-content {
    flex-direction: column;
  }
}
@media only screen and (max-width: 678px) {
  .landing-page .about-section .container .right .box .box-content .box-content-left {
    margin-bottom: 20px;
  }
}
.landing-page .about-section .container .right .box .box-content .box-content-left h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  .landing-page .about-section .container .right .box .box-content .box-content-left h4 {
    margin-bottom: 5px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 678px) {
  .landing-page .about-section .container .right .box .box-content .box-content-left h4 {
    text-align: center;
  }
}
.landing-page .about-section .container .right .box .box-content .box-content-left p {
  font-size: 17px;
  line-height: 27px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .about-section .container .right .box .box-content .box-content-left p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 678px) {
  .landing-page .about-section .container .right .box .box-content .box-content-left p {
    text-align: center;
  }
}
.landing-page .about-section .container .right .box .box-content h3 {
  margin-left: 40px;
  font-size: 35px;
  color: #1e54fe;
}
@media only screen and (max-width: 1024px) {
  .landing-page .about-section .container .right .box .box-content h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 678px) {
  .landing-page .about-section .container .right .box .box-content h3 {
    margin-left: 0;
  }
}
.landing-page .clients-section {
  position: relative;
  width: 100%;
  padding: 100px 0 0 0;
  background: #eef2fe;
  display: flex;
  flex-direction: column;
}
.landing-page .clients-section .container {
  padding-bottom: 100px;
}
.landing-page .clients-section .container .content {
  position: relative;
  width: 500px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .clients-section .container .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.landing-page .clients-section .container .content h3 {
  margin-bottom: 20px;
  font-size: 16px;
  color: #1e54fe;
}
@media only screen and (max-width: 1024px) {
  .landing-page .clients-section .container .content h3 {
    text-align: center;
  }
}
.landing-page .clients-section .container .content h2 {
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 400;
}
@media only screen and (max-width: 1024px) {
  .landing-page .clients-section .container .content h2 {
    font-size: 42px;
    text-align: center;
  }
}
.landing-page .clients-section .container .content h2 span {
  font-weight: 700;
}
.landing-page .clients-section .container .content p {
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 27px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .clients-section .container .content p {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }
}
.landing-page .clients-section .container .content button {
  width: 178px;
  height: 55px;
  font-size: 17px;
}
.landing-page .clients-section .clients-section-bottom {
  width: 55vw;
  background: #151a24;
  display: grid;
  grid-template-columns: auto 450px;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .clients-section .clients-section-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.landing-page .clients-section .clients-section-bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .clients-section .clients-section-bottom img {
    display: none;
  }
}
.landing-page .clients-section .clients-section-bottom .content {
  width: 100%;
  padding: 100px 50px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .clients-section .clients-section-bottom .content {
    margin: auto;
    width: 90%;
    max-width: 1320px;
  }
}
.landing-page .clients-section .clients-section-bottom .content h4 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .landing-page .clients-section .clients-section-bottom .content h4 {
    font-size: 18px;
    text-align: center;
  }
}
.landing-page .clients-section .clients-section-bottom .content p {
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 27px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .clients-section .clients-section-bottom .content p {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }
}
.landing-page .clients-section .clients-section-bottom .content p:last-child {
  margin-bottom: 0;
}
.landing-page .clients-section .clients-section-img-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .clients-section .clients-section-img-1 {
    display: none;
  }
}
.landing-page .projects-section {
  width: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
}
.landing-page .projects-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landing-page .projects-section .container h3 {
  margin-bottom: 20px;
  font-size: 16px;
  color: #1e54fe;
}
@media only screen and (max-width: 1024px) {
  .landing-page .projects-section .container h3 {
    text-align: center;
  }
}
.landing-page .projects-section .container h2 {
  margin-bottom: 75px;
  font-size: 52px;
  font-weight: 400;
}
@media only screen and (max-width: 1024px) {
  .landing-page .projects-section .container h2 {
    font-size: 42px;
    text-align: center;
  }
}
.landing-page .projects-section .container h2 span {
  font-weight: 700;
}
.landing-page .projects-section .container .boxes {
  width: 100%;
}
.landing-page .projects-section .container .boxes .box {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
}
.landing-page .projects-section .container .boxes .box img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .projects-section .container .boxes .box img {
    height: 450px;
  }
}
.landing-page .projects-section .container .boxes .box .box-content {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 25px;
  background: #ffffff;
}
.landing-page .projects-section .container .boxes .box .box-content h4 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #000000;
}
@media only screen and (max-width: 1024px) {
  .landing-page .projects-section .container .boxes .box .box-content h4 {
    font-size: 18px;
  }
}
.landing-page .projects-section .container .boxes .box .box-content p {
  font-size: 17px;
  line-height: 27px;
  color: #000000;
}
@media only screen and (max-width: 1024px) {
  .landing-page .projects-section .container .boxes .box .box-content p {
    font-size: 16px;
    line-height: 26px;
  }
}
.landing-page .projects-section .container .boxes .slick-slide {
  margin: 0 15px;
}
.landing-page .projects-section .container .arrows {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}
.landing-page .projects-section .container .arrows button {
  margin-right: 10px;
  width: 55px;
  height: 55px;
  border: 2px solid transparent;
  background: #eef2fe;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.landing-page .projects-section .container .arrows button:hover {
  border-color: #1e54fe;
  background: transparent;
}
.landing-page .projects-section .container .arrows button:last-child {
  margin-right: 0;
}
.landing-page .services-section {
  width: 100%;
  padding: 100px 0;
  background: #eef2fe;
  display: flex;
  justify-content: center;
}
.landing-page .services-section .container {
  display: grid;
  grid-template-columns: 350px auto;
  grid-gap: 100px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .services-section .container {
    grid-template-columns: 1fr;
    grid-gap: 75px;
  }
}
.landing-page .services-section .container .left {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .landing-page .services-section .container .left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.landing-page .services-section .container .left h3 {
  margin-bottom: 20px;
  font-size: 16px;
  color: #1e54fe;
}
@media only screen and (max-width: 1024px) {
  .landing-page .services-section .container .left h3 {
    text-align: center;
  }
}
.landing-page .services-section .container .left h2 {
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 400;
}
@media only screen and (max-width: 1024px) {
  .landing-page .services-section .container .left h2 {
    font-size: 42px;
    text-align: center;
  }
}
.landing-page .services-section .container .left h2 span {
  font-weight: 700;
}
.landing-page .services-section .container .left p {
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 27px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .services-section .container .left p {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }
}
.landing-page .services-section .container .left button {
  width: 178px;
  height: 55px;
  font-size: 16px;
}
.landing-page .services-section .container .right {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}
@media only screen and (max-width: 678px) {
  .landing-page .services-section .container .right {
    grid-template-columns: 1fr;
  }
}
.landing-page .services-section .container .right .box {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 678px) {
  .landing-page .services-section .container .right .box {
    flex-direction: column;
    align-items: center;
  }
}
.landing-page .services-section .container .right .box img {
  margin-right: 20px;
  width: 90px;
  min-width: 90px;
}
@media only screen and (max-width: 678px) {
  .landing-page .services-section .container .right .box img {
    margin-bottom: 20px;
    margin-right: 0;
  }
}
.landing-page .services-section .container .right .box .box-content h4 {
  margin-bottom: 10px;
  font-size: 20px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .services-section .container .right .box .box-content h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 678px) {
  .landing-page .services-section .container .right .box .box-content h4 {
    text-align: center;
  }
}
.landing-page .services-section .container .right .box .box-content p {
  font-size: 17px;
  line-height: 27px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .services-section .container .right .box .box-content p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 678px) {
  .landing-page .services-section .container .right .box .box-content p {
    text-align: center;
  }
}
.landing-page .feedback-section {
  width: 100%;
  padding: 100px 0;
  background: url("../images/pages/landing-page/feedback-section-bg-img-1.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
}
.landing-page .feedback-section .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 100px;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .feedback-section .container {
    grid-template-columns: 1fr;
    grid-gap: 75px;
  }
}
.landing-page .feedback-section .container .left {
  width: 100%;
}
.landing-page .feedback-section .container .left h3 {
  margin-bottom: 20px;
  font-size: 16px;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .landing-page .feedback-section .container .left h3 {
    text-align: center;
  }
}
.landing-page .feedback-section .container .left h2 {
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 400;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .landing-page .feedback-section .container .left h2 {
    font-size: 42px;
    text-align: center;
  }
}
.landing-page .feedback-section .container .left h2 span {
  font-weight: 700;
}
.landing-page .feedback-section .container .left p {
  font-size: 17px;
  line-height: 27px;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .landing-page .feedback-section .container .left p {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }
}
.landing-page .feedback-section .container .right {
  width: 100%;
}
.landing-page .feedback-section .container .right .box {
  width: 100%;
  padding: 50px;
  background: #ffffff;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  .landing-page .feedback-section .container .right .box {
    padding: 35px;
  }
}
.landing-page .feedback-section .container .right .box h4 {
  margin-bottom: 25px;
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .feedback-section .container .right .box h4 {
    font-size: 22px;
    text-align: center;
  }
}
.landing-page .feedback-section .container .right .box input {
  margin-bottom: 15px;
  width: 100%;
  height: 60px;
  padding: 0 25px;
  background: #eef2fe;
  border-radius: 100px;
  font-size: 17px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .feedback-section .container .right .box input {
    height: 50px;
    font-size: 16px;
  }
}
.landing-page .feedback-section .container .right .box .inputs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}
@media only screen and (max-width: 678px) {
  .landing-page .feedback-section .container .right .box .inputs {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
.landing-page .feedback-section .container .right .box .box-bottom {
  width: 100%;
  display: grid;
  grid-template-columns: auto 180px;
  grid-gap: 15px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .feedback-section .container .right .box .box-bottom {
    grid-template-columns: 1fr;
  }
}
.landing-page .feedback-section .container .right .box .box-bottom input {
  margin-bottom: 0;
}
.landing-page .feedback-section .container .right .box .box-bottom button {
  width: 100%;
  height: 60px;
  font-size: 17px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .feedback-section .container .right .box .box-bottom button {
    font-size: 16px;
    height: 50px;
  }
}
.landing-page .testimonial-section {
  width: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
}
.landing-page .testimonial-section .container {
  display: grid;
  grid-template-columns: auto 850px; 
  grid-gap: 100px;
}
@media only screen and (max-width: 1280px) {
  .landing-page .testimonial-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.landing-page .testimonial-section .container .left {
  width: 100%;
}
.landing-page .testimonial-section .container .left h3 {
  margin-bottom: 20px;
  font-size: 16px;
  color: #1e54fe;
}
@media only screen and (max-width: 1280px) {
  .landing-page .testimonial-section .container .left h3 {
    text-align: center;
  }
}
.landing-page .testimonial-section .container .left h2 {
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 400;
}
@media only screen and (max-width: 1280px) {
  .landing-page .testimonial-section .container .left h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .landing-page .testimonial-section .container .left h2 {
    font-size: 42px;
  }
}
.landing-page .testimonial-section .container .left h2 span {
  font-weight: 700;
}
.landing-page .testimonial-section .container .left p {
  font-size: 17px;
  line-height: 27px;
}
@media only screen and (max-width: 1280px) {
  .landing-page .testimonial-section .container .left p {
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .landing-page .testimonial-section .container .left p {
    font-size: 16px;
    line-height: 26px;
  }
}
.landing-page .testimonial-section .container .right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landing-page .testimonial-section .container .right .boxes {
  width: 100%;
}
.landing-page .testimonial-section .container .right .boxes .box {
  margin: 0 10px;
  width: 100%;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landing-page .testimonial-section .container .right .boxes .box img {
  margin-bottom: 20px;
  width: 140px;
}
.landing-page .testimonial-section .container .right .boxes .box h4 {
  margin-bottom: 5px;
  font-size: 20px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .testimonial-section .container .right .boxes .box h4 {
    font-size: 18px;
  }
}
.landing-page .testimonial-section .container .right .boxes .box p {
  font-size: 17px;
  line-height: 27px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .testimonial-section .container .right .boxes .box p {
    font-size: 16px;
    line-height: 26px;
  }
}
.landing-page .testimonial-section .container .right .arrows {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}
.landing-page .testimonial-section .container .right .arrows button {
  margin-right: 10px;
  width: 55px;
  height: 55px;
  border: 2px solid transparent;
  background: #eef2fe;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.landing-page .testimonial-section .container .right .arrows button:hover {
  border-color: #1e54fe;
  background: transparent;
}
.landing-page .testimonial-section .container .right .arrows button:last-child {
  margin-right: 0;
}
.landing-page .news-section {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.landing-page .news-section .news-section-bg-img-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 678px) {
  .landing-page .news-section .news-section-bg-img-1 {
    display: none;
  }
}
.landing-page .news-section .container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1140px) {
  .landing-page .news-section .container {
    width: 100%;
    max-width: 100%;
  }
}
.landing-page .news-section .container .box {
  width: 500px;
  padding: 75px 35px;
  background: #eef2fe;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 1140px) {
  .landing-page .news-section .container .box {
    width: 50%;
  }
}
@media only screen and (max-width: 678px) {
  .landing-page .news-section .container .box {
    width: 100%;
  }
}
.landing-page .news-section .container .box.right-box {
  margin-left: auto;
}
.landing-page .news-section .container .box h3 {
  margin-bottom: 10px;
  font-size: 16px;
  text-align: center;
  color: #1e54fe;
}
.landing-page .news-section .container .box h4 {
  margin-bottom: 10px;
  font-size: 20px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .news-section .container .box h4 {
    font-size: 18px;
  }
}
.landing-page .news-section .container .box p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 27px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .news-section .container .box p {
    font-size: 16px;
    line-height: 26px;
  }
}
.landing-page .news-section .container .box button {
  width: 170px;
  height: 50px;
  font-size: 15px;
}
.landing-page .news-section .container img {
  width: 100%;
  display: none;
}
@media only screen and (max-width: 678px) {
  .landing-page .news-section .container img {
    display: block;
  }
}/*# sourceMappingURL=index.css.map */