/*===================================================
Project: Ramix | multipurpose Business HTML landing page template 
Auther: ERRAMIX
Version: 1.0
====================================================*/
/* start global classes */
:root {
  /* neutral */
  --black: #000;
  --dark-grey: #313131;
  --grey: #717171;
  --light-grey: #89939E;
  --grey-blue: #ABBED1;
  --silver: #F5F7FA;
  --white: #fff;

  /* primary */
  --primary-blue: #025928;
  --shape-color: #e0dfff;
  --light-blue: #f8f5ff;

  /* primary */
  --border-radius: 5px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--primaryColor);
  background-color: var(--bodyColor);
  text-align: left;
  position: relative;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

::selection {
  color: #F9F9F9;
  background-color: var(--primary-blue);
}

.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5 {
  font-weight: bold;
  position: relative;
}

.heading-1 {
  font-size: 64px;
  line-height: 76px;
}

.heading-2 {
  font-size: 52px;
  line-height: 64px;
}

.heading-3 {
  font-size: 36px;
  line-height: 44px;
}

.heading-4 {
  font-size: 28px;
  line-height: 36px;
}

.heading-5 {
  font-size: 20px;
  line-height: 28px;
}

@media (max-width: 768px) {
  .heading-1 {
    font-size: 36px;
    line-height: 44px;
  }

  .heading-2 {
    font-size: 28px;
    line-height: 36px;
  }

  .heading-3 {
    font-size: 20px;
    line-height: 28px;
  }

  .heading-4 {
    font-size: 18px;
    line-height: 24px;
  }

  .heading-5 {
    font-size: 16px;
    line-height: 20px;
  }
}

.body-1 {
  font-size: 18px;
  line-height: 28px;
}

.body-2 {
  font-size: 16px;
  line-height: 24px;
}

.body-3 {
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 768px) {
  .body-1 {
    font-size: 16px;
    line-height: 24px;
  }

  .body-2 {
    font-size: 14px;
    line-height: 20px;
  }

  .body-3 {
    font-size: 12px;
    line-height: 16px;
  }
}


.highlighted-text {
  color: var(--primary-blue);
}

.shape.flash {
  width: 100px;
  height: 100px;
}

.padding-1 {
  padding: 1rem;
}

.padding-2 {
  padding: 2rem;
}

.bordered {
  border: var(--light-grey) .5px solid;
}


.w-fit {
  width: fit-content;
}

.bg-primary {
  background-color: var(--primary-blue);
}

.bg-light-primary {
  background-color: var(--light-blue);
}

.bg-white {
  background-color: var(--white);
}

.shape {
  color: var(--shape-color);
  position: absolute;
}

.boxes {
  width: 400px;
  height: 400px;
}

.white-bg {
  background-color: var(--white);
}

.clr-black {
  color: var(--black);
}

.clr-d-grey {
  color: var(--dark-grey);
}

.clr-grey {
  color: var(--grey);
}

.clr-l-grey {
  color: var(--light-grey);
}

.b-radius {
  border-radius: var(--border-radius);
}

.underline::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 6px;
  left: 0;
  right: 0;
  bottom: -2px;
  background-color: var(--primary-blue);
  border-radius: var(--border-radius);
}

a {
  text-decoration: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  border: 0;
  outline: 0;
  background-color: transparent !important;
}

/* start thank you page */

.thank {
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.thank .thank-boxes-1 {
  left: -200px;
  bottom: 100px;
}

.thank .thank-boxes-2 {
  right: -200px;
  top: 100px;
}

.thank .thank-blur {
  top: -400px;
  right: 0;
  left: 0;
  width: 1400px;
  opacity: 0.8;
  z-index: -1;
}

.thank .thank-star {
  top: -20px;
  right: 20%;
  width: 100px;
  height: 100px;
}

/* end thank you page */


.section {
  padding-block: 4rem;
}

@media (max-width: 998px) {
  .section {
    padding-block: 2rem;
  }

  .shape {
    opacity: 0;
    display: none;
  }

  .padding-1 {
    padding: .5rem;
  }

  .padding-2 {
    padding: 1rem;
  }

  .underline::after {
    display: none;
  }

}

.box {
  position: relative;
  transition: color 300ms ease-in-out;
}

.box.box-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: var(--primary-blue);
  transition: transform 400ms ease-in-out;
  transform: scaleX(0);
  transform-origin: top;
  color: var(--light-blue);
}

.box.box-hover:hover:before,
.box.box-hover:focus:before {
  transform: scaleX(1);
}

.box.box-hover:hover,
.box.box-hover:focus,
.box.box-hover:hover a i,
.box.box-hover:hover>* {
  color: var(--light-blue);
}

.box.box-hover:hover>p {
  color: var(--light-grey);
}

/* start buttons style */
.btn,
.btn-outline {
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  text-transform: capitalize;
  align-items: center;
  text-align: center;
  outline: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  z-index: 1;
  transition: color 300ms ease-in-out;
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn:hover {
  border: solid 1px var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline {
  background-color: var(--white);
  color: var(--primary-blue);
  border: solid 1px var(--primary-blue);
}

@media (max-width: 768px) {

  .btn,
  .btn-outline {
    padding: 8px 16px;
    font-size: 16px;
  }
}

.btn-outline i {
  font-size: 18px;
}

.learn-more {
  font-size: 18px;
  font-weight: bold;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 5px;
}

.learn-more i {
  font-size: 18px;
}


/* end main button style */

p {
  color: var(--dark-grey);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  width: 100%;
}

.organize {
  width: 400px;
  height: 400px;
}


/* end global classes */

/* ==== start  preloader style  ===== */
#preloader {
  background: var(--white);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999;
  place-content: center;
}

.spinner {
  position: absolute;
  top: 45%;
  left: 45%;
  border: 16px solid #e6e6e6;
  border-top: 16px solid var(--primary-blue);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* ==== end  preloader style  ===== */

/* ======== start scroll-to-top button style  =========== */

#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 800;
}

#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  border-radius: 50%;
  display: grid;
  background-color: var(--light-blue);
  place-items: center;
  font-size: 35px;
  color: var(--dark-grey);
}

/* ======== end scroll-to-top button style  =========== */

/*================== start auth section ==================*/
.auth {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth .icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-blue);
  border-radius: 50%;
}

.auth .icon i {
  font-size: 16px;
}

.auth .or {
  position: relative;
  color: var(--grey);
  font-size: 18px;
}

.auth i {
  font-size: 20px;
}

.auth .or::after {
  position: absolute;
  content: '';
  width: 220px;
  height: 1px;
  background-color: var(--grey);
  top: 50%;
  left: 30px;
}

.auth .or::before {
  position: absolute;
  content: '';
  width: 220px;
  height: 1px;
  background-color: var(--grey);
  top: 50%;
  right: 30px;
}

/*================== end auth section ==================*/


/*================== start navbar section ==================*/
.navbar {
  z-index: 900;
}

.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
  border: none;
}

@media (max-width: 990px) {
  .navbar {
    background-color: var(--boxColor);
  }
}

.navbar #menu {
  color: var(--dark-grey);
  font-size: 30px;
}

.navbar .logo {
  width: 9rem;
}

.navbar ul li a:focus {
  background-color: transparent;
}

.navbar ul li a {
  font-weight: 600;
  text-transform: capitalize;
  color: var(--dark-grey) !important;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--primary-blue) !important;
}

.navbar .dropdown-menu {
  background-color: var(--light-blue) !important;
}

.navbar .dropdown-menu .dropdown-item {
  color: var(--dark-grey);
  background-color: var(--light-blue);
}

/*================== End navbar section ==================*/

/*================== start hero section ==================*/
.hero {
  position: relative;
  overflow: hidden;
}

.agency .hero .hero-icon {
  font-size: 32px;
  color: var(--primary-blue);
}

.agency .numbers .images img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: .5px solid var(--white);
}

.agency .numbers .images .gap {
  margin-left: -8px;
}

.agency .logos img {
  filter: grayscale(10);
}

.security .hero .shape-hero-star {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 28%;
  right: 10%;
}

.store-img {
  height: 55px;
  width: 180px;
}

.hero .shape-organise {
  width: 400px;
  height: 400px;
  top: -50px;
  left: -200px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0;
  right: -220px;
}

.saas .hero {
  min-height: 80vh;
}

.ai .hero .boxes-hero-ai {
  top: 0;
  right: -200px;
}

.ai .hero .boxes-hero-ai-2 {
  bottom: 200px;
  left: -200px;
}

.ai .features i {
  font-size: 48px;
  color: var(--primary-blue);
}

.ai .features .ai-features-shape {
  right: -200px;
  top: -130px;
}

.saas .hero i {
  font-size: 24px;
  color: var(--primary-blue);
}

.saas .shape-hero-saas {
  top: 40px;
  right: 0;
  width: 100px;
  height: 100px;
}

/*================== end hero section =====================*/


/*============== Start Services section ==========*/

.services .organize {
  top: 0;
  right: -150px;
}

.agency .services .service {
  border: 0;
}

.agency .services .service .service-icon {
  font-size: 42px;
  color: var(--primary-blue);
}

.security .services .icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.security .services .shape-services-boxes {
  left: -200px;
  top: -100px;
}

.security .services .shape-services-star {
  right: -20px;
  top: -20px;
  width: 120px;
  height: 120px;
}

.security .services .icon i {
  font-size: 38px;
  color: var(--white);
}

.ai .services i {
  font-size: 42px;
  color: var(--primary-blue);
}

.services .shape-3 {
  width: 200px;
  height: 200px;
  left: -100px;
  bottom: 0;
}

.service {
  padding: 2rem;
  border: var(--grey-blue) solid .5px;
  z-index: 999;
}

.service .icon {
  width: fit-content;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.service .icon i {
  font-size: 36px;
  color: var(--primary-blue);
}

.service .learn-more {
  color: var(--primary-blue);
}

/*============== End Services section ==========*/


/*============== Start About section ==========*/
.saas .about .about-organize {
  left: -150px;
  top: -100px;
  width: 400px;
  height: 400px;
}

.security .about .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(--light-blue);
  border-radius: 50%;
}

.security .about .shape-about-star {
  position: absolute;
  right: 0;
  top: 0;
  width: 150px;
  height: 150px;
}

.security .about .icon-lg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: var(--light-blue);
  border-radius: var(--border-radius);
}

.security .about .icon-lg i {
  font-size: 42px;
  color: var(--primary-blue);
}

.security .about .icon i {
  font-size: 32px;
  color: var(--primary-blue);
}

.security .about .shape-about-sec-boxes {
  position: absolute;
  top: -200px;
  right: -340px;
}

.app .about .shape-app-about {
  width: 200px;
  height: 200px;
  top: 0;
  left: -100px;
}

.app .about .shape-app-about-organise {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
}

.app .about .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-blue);
  border-radius: 50%;
}

.app .about .icon i {
  font-size: 24px;
  color: var(--white);
}

.app .about .shape-app-about-boxes-2 {
  width: 200px;
  height: 200px;
  right: -230px;
  top: 0;
}

.app .about .shape-app-about-organise-2 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -200px;
}

.app .about .img-about {
  border: var(--grey) solid 1px;
  border-radius: 20px;
}

.about-box .icon {
  width: fit-content;
}

.about-box .icon i {
  font-size: 24px;
  color: var(--primary-blue);
}

.shape-about {
  left: -150px;
  bottom: -190px;
}

.shape-about-2 {
  right: -100px;
  top: -100px;
}

.saas .about .flash {
  right: 0;
  top: 0;
}

.saas .about .icon {
  width: 80px;
  height: 80px;
}

.saas .about .icon i {
  font-size: 32px;
  color: var(--primary-blue);
}

.agency .about .testimonial-box {
  height: fit-content;
}

.agency .about .testimonial-box .icon-star {
  font-size: 24px;
  color: var(--primary-blue);
}

.agency .about .testimonial-box .img img {
  border-radius: 50%;
}

.agency .about .testimonial-box .img {
  width: 300px;
  height: 300px;
}

/*============== End About section ==========*/

.app .steps .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-blue);
}

.app .steps .icon i {
  font-size: 24px;
  color: var(--primary-blue);
}

.app .steps .shape-app-steps-flash {
  width: 150px;
  height: 150px;
  right: 0;
  top: 0;
}

.app .steps .shape-number {
  color: var(--shape-color);
  position: absolute;
  font-size: 124px;
  z-index: -1;
  opacity: 0.7;
  top: -40px;
  right: 100px;
}

.app .screen img {
  border: var(--grey) solid .5px;
  border-radius: 20px;
}

.company h1::before {
  position: absolute;
  content: "";
  top: 25px;
  left: 510px;
  background-color: var(--grey-blue);
  width: 800px;
  height: 1px;
}

@media (max-width: 990px) {
  .company h1::before {
    opacity: 0;
  }
}

/*============== Start Features section ==========*/

.agency .features .shape-features-1 {
  top: -100px;
  right: -200px;
  width: 400px;
  height: 400px;
}

.shape-features-2 {
  top: 0;
  left: 0;
}

.saas .features .icon,
.agency .features .icon {
  width: 60px;
  height: 60px;
}

.agency .features .icon {
  flex: .15;
  display: flex;
  justify-content: center;
  align-items: center;
  border: .5px solid var(--light-grey);
  background-color: var(--light-blue);
  border-radius: var(--border-radius);
}

.agency .features .text {
  flex: .85;
}

.saas .features .icon i,
.agency .features .icon i {
  font-size: 32px;
  color: var(--primary-blue);
}

.saas .features .shape-saas-features {
  width: 150px;
  height: 150px;
  right: 0;
  top: 0;
}

/*============== End Features section ==========*/

/*============== Start integrations section ==========*/

.integrations .box {
  height: 220px;
  background-color: var(--white);
  margin-top: 3rem;
}

.integrations .shape.icon {
  position: absolute;
}

@media (max-width: 1300px) {
  .integrations .shape.icon {
    display: none;
  }
}

.integrations .shape.one {
  left: 300px;
  top: -60px;
}

.integrations .shape.two {
  left: 460px;
  top: -90px;
}

.integrations .shape.three {
  left: 600px;
  top: -120px;
}

.integrations .shape.four {
  right: 460px;
  top: -90px;
}

.integrations .shape.five {
  right: 300px;
  top: -60;
}

.integrations .heading-4 {
  margin-top: 36px;
}

.integrations .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -24%;
}

.integrations .icon i {
  font-size: 48px;
}

.integrations .boxes {
  width: 400px;
  height: 400px;
  bottom: 0;
  right: -200px;
}

.integrations .boxes-colored {
  width: 400px;
  height: 400px;
  left: -200px;
  top: 200px;
}

.integrations .shape-saas-integration {
  width: 150px;
  height: 150px;
  right: 0;
  top: 0;
}

/*============== Start testimonials section ==========*/

/* it solutions */

.shape-testimonials-organize-1 {
  top: 100px;
  right: -100px;
}

.shape-testimonials-organize-2 {
  bottom: 150px;
  left: -100px;
}

.shape-testimonials-boxes-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -200px;
}

.shape-testimonials-boxes-2 {
  width: 400px;
  height: 400px;
  bottom: 0;
  right: -200px;
}

/* saas software */

.testimonials .box {
  width: 600px;
  background-color: var(--light-blue);
  border: solid var(--grey) .5px;
  padding: 1rem;
}

.testimonials .box .icon-star {
  font-size: 24px;
  color: var(--primary-blue);
}

.testimonials .shape-saas-testimonials {
  width: 150px;
  height: 150px;
  left: 0;
  top: 0;
}

@media (max-width: 990px) {
  .testimonials .box {
    width: 400px;
  }

  .testimonials .img img {
    width: 100px;
    height: 100px;
  }

  .testimonials .img {
    flex: .30;
  }

  .testimonials .text {
    flex: .70;
  }
}

.testimonials .img img {
  border-radius: 50%;
}

.testimonials .img {
  width: 300px;
  height: 300px;
}


@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.scroller {
  width: 100%;
  margin-top: 1rem;
}

.scroller__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg,
      transparent,
      black 20%,
      black 80%,
      transparent);
  mask: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 40s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 70s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

/*============== End testimonials section ==========*/

/*============== Start how-it-work section ==========*/

.how-it-works .box .line {
  position: relative;
}

.agency .how-it-works .number {
  width: 60px;
  height: 60px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-blue);
  border: .5px solid var(--light-grey);
  border-radius: 50%;
  flex: .10;
  z-index: 99;
}

.agency .how-it-works .hiw-box {
  height: 230px;
  position: relative;
}

.agency .how-it-works .hiw-box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 30px;
  width: 1px;
  height: 240px;
  background-color: var(--light-grey);
  z-index: 9;
}

.agency .how-it-works .number h3 {
  color: var(--primary-blue);
  padding: 0;
  margin: 0;
}

.agency .how-it-works .text {
  flex: .90;
}

.ai .how-it-works .number {
  width: 65px;
  height: 65px;
  background-color: var(--primary-blue);
  color: var(--light-blue);
  border-radius: 50%;
  flex: .09;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai .how-it-works .row img {
  border: var(--primary-blue) solid .5px;
  border-radius: var(--border-radius);
}

.ai .how-it-works .text {
  flex: .91;
}

.ai .how-it-works .lined {
  position: relative;
}

.ai .how-it-works .lined::after {
  position: absolute;
  content: '';
  top: 110%;
  left: 50%;
  width: 1px;
  height: 340px;
  background-color: var(--light-grey);
}

.ai .how-it-works .ai-steps-boxes {
  left: -200px;
  top: 0;
}

.ai .how-it-works .ai-steps-star {
  right: 100px;
  top: 100px;
  width: 100px;
  height: 100px;
}

.how-it-works .box .line::after {
  position: absolute;
  content: "";
  width: 380px;
  height: 1px;
  top: 45px;
  left: 80px;
  background-color: var(--light-grey);
}

@media (max-width: 990px) {
  .how-it-works .box .line::after {
    opacity: 0;
  }

  .ai .how-it-works .lined::after {
    opacity: 0;
  }

  .how-it-works .number {
    width: 40px;
    height: 40px;
  }
}

.how-it-works .number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-content: center;
}

.shape-hiw-2 {
  top: 0;
  right: 0;
}

.shape-hiw {
  width: 400px;
  height: 400px;
  bottom: -170px;
  left: -200px;
}

.shape-work {
  width: 200px;
  height: 200px;
  right: -90px;
  top: -100px;
}

.security .steps .number {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--light-blue);
  position: relative;
}

.security .steps .shape-steps-star {
  width: 120px;
  height: 120px;
  left: 0;
  top: 80px;
}

.security .steps .number h4 {
  color: var(--primary-blue, #5020D9);
}

.security .steps .number.lined::after {
  position: absolute;
  content: '';
  width: 420px;
  top: 50%;
  left: 110%;
  height: 1px;
  background-color: var(--light-grey);
}


@media (max-width: 990px) {
  .security .steps .number.lined::after {
    opacity: 0;
  }
}

/*============== End how-it-work section ==========*/


/*============== Start Awards section ==========*/
.awards .icons i {
  color: #d4bf00;
  font-size: 24px;
}


/*============== ends Awards section ==========*/


.security .team .shape-boxes-team {
  top: 0;
  right: -200px;
}

/*============== Start pricing section ==========*/

.pricing .box {
  background-color: var(--white);
}

.saas .pricing .pricing-organize {
  left: -150px;
  top: 100px;
}

.saas .pricing .boxes-1 {
  bottom: 0;
  left: -200px;
}

.saas .pricing .boxes-sm {
  top: 0;
  right: -200px;
}

.saas .pricing .box-saas {
  background-color: var(--light-blue);
}

.pricing .box .icon {
  flex: .15;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing .box .icon i {
  font-size: 32px;
  color: var(--primary-blue);
}

.pricing .box .text {
  flex: .85;
}

.pricing-box h4 {
  font-size: 16px;
  font-weight: 600;
}

.pricing-box i {
  padding: 5px;
}

.shape-pricing-organize {
  top: 0;
  left: -100px;
}

.shape-pricing-boxes {
  top: -200px;
  width: 400px;
  height: 400px;
  right: -200px;

}

/*============== End pricing section ==========*/

/*============== Start portfolio section ==========*/

.saas .portfolio .portfolio-organize {
  left: -150px;
  top: 100px;
}

.saas .portfolio .star {
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
}

/*============== End portfolio section ==========*/

.client-box img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.client-box i {
  font-size: 24px;
  color: var(--primary-blue);
}

/*============== Start team section ==========*/

.agency .team .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--light-blue);
  border-radius: var(--border-radius);
}

.agency .team .icon i {
  font-size: 20px;
  color: var(--primary-blue);
}

.saas .team .team-boxes {
  width: 400px;
  height: 400px;
  left: -200px;
  top: 0;
}

.saas .team img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  bottom: 20%;
}

.saas .team .icons .icon {
  width: 40px;
  height: 40px;
  background-color: var(--light-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.saas .team .icons .icon i {
  font-size: 22px;
  margin: 0;
  padding: 0;
  color: var(--primary-blue);
}

.box-team .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(--light-blue);
  border-radius: var(--border-radius);
}

.box-team .icons {
  position: absolute;
  bottom: 0;
  margin-bottom: 1rem;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.box-team .icons:hover {
  opacity: 1;
}

.box-team .icon i {
  font-size: 24px;
  color: var(--primary-blue);
}

.shape-team-boxes {
  width: 400px;
  height: 400px;
  right: -200px;
  bottom: -200px;
}

.shape-team-organize {
  top: 0;
  left: -150px;
}

/*============== start Call To Action section ==========*/

.saas .cta img {
  position: absolute;
  left: 20px;
  top: -220px;
  width: 500px;
}

.saas .cta {
  margin-top: 250px;
}

.ai .cta {
  background-color: #2B2834;
}

.ai .cta i {
  color: green;
  font-size: 24px;
}

@media (max-width: 1100px) {

  .saas .cta .img-container {
    display: none;
  }

  .saas .cta img {
    display: none;
  }

  .saas .cta {
    margin-top: 2rem;
  }
}

/*============== End Call To Action section ==========*/


/*============== End team section ==========*/

.shape-blog-organize {
  bottom: 0;
  left: -100px;
}

.saas .blog .blog-boxes {
  width: 400px;
  height: 400px;
  top: 0;
  right: -200px;
}

.saas .blog .blog-organize {
  top: 100px;
  left: -100px;
}

.security .blog .shape-boxes-blog {
  top: 0;
  left: -200px;
}

/*============== start FAQ section ==========*/

.saas .faq .box .icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius);
  flex: .10;
}

.saas .faq .box .icon i {
  font-size: 28px;
  color: var(--primary-blue);
}

.saas .faq .box .text {
  flex: .90;
}

.rotate180 {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.saas .faq .boxes-faq {
  top: 0;
  right: -200px;
}

/*============== End FAQ section ==========*/


/*============== Start contact section ==========*/
.saas .contact i {
  font-size: 24px;
}

.saas .contact .contact-boxes {
  top: 0;
  left: -200px;
}

.contact .icon {
  border-radius: 50%;
  height: fit-content;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .box-icon {
  font-size: 32px;
  color: var(--primary-blue);
}

.contact .icon i {
  color: var(--primary-blue);
  font-size: 26px;
}

.shape-organize-contact {
  top: 0;
  right: -100px;
}

.shape-boxes-contact {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -200px;
}

/*============== End contact section ==========*/

/*============== Start Footer section ==========*/

.footer .icons .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
}

.footer,
.copy {
  border-top: var(--light-grey) .5px solid;
}

.footer .icons .icon i {
  font-size: 20px;
  color: var(--primary-blue);
}

.footer .input {
  height: fit-content;
  background-color: var(--white);
}

.footer .input input {
  outline: none;
  border: none;
  background-color: transparent;
  height: 100%;
  width: 90%;
}

.footer .input i {
  font-size: 26px;
  color: var(--primary-blue);
}

/*============== End Footer section ==========*/

/*============== Start Rod Custom Styles ==========*/

.header {
  min-height: 80px;
}

.header .logo-link-header .header-logo {
    max-width: 150px; 
    max-height: 100%;
    height: auto;
}

/* Logo styles */
.logo-link-header .header-logo {
    max-width: 100%;
    height: auto;
}

/* Specific size adjustments for header logo */
.logo-link-header .header-logo {
    max-height: 50px;
}

/*============== End Rod Custom Styles ==========*/

@media (max-width: 768px) {
    .header .logo-link-header .header-logo {
        max-width: 120px; /* Smaller max-width for tablet */
    }
}

@media (max-width: 480px) {
    .header .logo-link-header .header-logo {
        max-width: 100px; /* Even smaller max-width for mobile */
    }
}