@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --effectshadowe3: rgba(0, 0, 0, 0.161);
  --outline-low_em: #ececec;
  --primary-color: #39803a;
  --secondary-color: #242424;
  --paragraph-color: #6d6d6d;
  --paragraph-secondary: #767676;
  --bg-color: #030a03;
  --gradient: linear-gradient(
    93.39deg,
    #3d7fab -6.93%,
    #4da68b 36.87%,
    #51ac52 97.78%
  );
  --gradient-hover: linear-gradient(
    90.39deg,
    #51ac52 -6.93%,
    #4da68b 36.87%,
    #3d7fab 97.78%
  );
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all ease-in 0.3s;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 16px;
  font-family: "Inter", sans-serif;
}
p {
  color: var(--paragraph-color);
}
.text-muted {
  color: #6d6d6d !important;
}
img {
  max-width: 100%;
}
.cloud-btn {
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: none;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 45px;
  border: none;
}

.cloud-btn span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  height: 100%;
  font-size: 16px;
}
.section-padding {
  padding: 60px 0;
}
.btn-primary {
  background: #51ac52;
  font-weight: 500;
}
.btn-gradient {
  background: var(--gradient);
  font-weight: 600;
}

.cloud-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

header {
  padding: 24px 0;
  border-bottom: 1px solid var(--outline-low_em, #ececec);
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  background-color: #fff;
}
header.is-sticky {
  width: 100%;
  z-index: 9;
  background-color: #fff;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
  padding: 10px;
}
header .header-row {
  display: flex;
  justify-content: space-between;
  padding: 4.5px 0;
}
header .header-row .header-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

header .header-row .header-menu li {
  position: relative;
}
header .header-row .header-menu li a {
  color: #4f4f4f;
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
  padding: 10px 16px;
  border-radius: 45px;
  transition: all 0.3s ease-in-out;
  line-height: 22px;
  display: block;
}

header .header-row .header-menu li a:hover,
header .header-row .header-menu li a:active,
header .header-row .header-menu li a.active {
  background: #51ac52;
  color: #fff;
  box-shadow: 0px 3px 4px -2px var(--effectshadowe3);
  font-weight: 600;
}

/* Mobile Menu */
header .mobile-menu-btn {
  display: none;
}
.off-canvas-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9999;
}
.off-canvas-wrapper .off-canvas-inner-content {
  transform: none;
}
.off-canvas-wrapper .off-canvas-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  cursor: url("../images/cancel.png"), auto;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.off-canvas-wrapper .off-canvas-inner-content {
  background: #fbfbfb;
  width: 300px;
  padding: 20px;
  height: 100%;
  position: relative;
  transform: translateX(calc(-100% - 50px));
  transition: 0.4s;
}
.off-canvas-wrapper.open {
  opacity: 1;
  visibility: visible;
}
.off-canvas-wrapper.open .off-canvas-inner-content {
  transform: none;
}
.off-canvas-wrapper .off-canvas-inner {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  height: 100%;
}
.off-canvas-wrapper .off-canvas-inner .logo {
  display: flex;
}
.off-canvas-wrapper .off-canvas-inner .logo img {
  max-width: 130px;
}
.off-canvas-wrapper .btn-close-off-canvas {
  width: 30px;
  height: 30px;
  color: #51ac52;
  text-align: center;
  cursor: pointer;
  transition: 0.4s;
  font-weight: 100;
  z-index: 84;
  position: relative;
  font-size: 24px;
}

.mobile-navigation {
  overflow: hidden;
  max-height: calc(100% - 50px);
  padding-top: 20px;
}

.mobile-navigation nav {
  height: 100%;
}

.mobile-header {
  padding: 10px 0;
}

.mobile-header-top {
  border-bottom: 1px solid #efefef;
}

.mobile-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-main-header .mobile-logo img {
  width: 100px;
}
.mobile-main-header .mobile-menu-btn {
  border: 0;
  background-color: transparent;
  padding: 0;
  height: 24px;
  width: 24px;
}
.mobile-header .btn {
  padding: 7px 12.5px;
}
.mobile-header .btn i {
  margin-right: 0;
}
.mobile-menu {
  height: 100%;
  overflow: auto;
  padding-right: 30px;
  margin-right: -30px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.mobile-menu ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.mobile-menu li:not(:last-child) {
  border-bottom: 1px solid #51ac52;
}
.mobile-menu li a {
  font-size: 16px;
  color: #242424;
  text-transform: capitalize;
  line-height: 18px;
  font-weight: 500;
  position: relative;
  display: block;
  padding: 14px 0;
  text-decoration: none;
  transition: all 0.5s;
}
.mobile-menu li a.active,
.mobile-menu li a:hover {
  color: #51ac52;
}

main {
  min-height: 80vh;
}
/* Home banner */
.home-banner {
  padding: 206px 0 30px;
}
.home-banner .banner-left {
  display: grid;
  gap: 80px;
}
.home-banner .banner-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.home-banner .banner-content h1 {
  font-size: 72px;
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 0;
  letter-spacing: -2%;
}
.home-banner .banner-content h1 span {
  color: var(--primary-color);
}
.home-banner .banner-content p {
  font-size: 24px;
  line-height: 1.3333;
  font-weight: 400;
  margin-bottom: 0;
}
.home-banner img {
  width: 100%;
  height: 100%;
}
.heading-2 {
  color: var(--secondary-color);
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
  letter-spacing: -4%;
}
.description {
  color: #6d6d6d;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 0;
  letter-spacing: -2%;
}
.about-us {
  padding: 60px 0;
}
.about-us .about-content {
  display: flex;
  gap: 28px;
  flex-direction: column;
}
.about-us .about-content p {
  font-size: 33px;
  line-height: 1.697;
  font-weight: 500;
  color: var(--paragraph-secondary);
}
.about-us .about-content p strong {
  color: var(--secondary-color);
  letter-spacing: -2%;
  font-weight: 700;
}
.our-mission {
  padding: 60px 0;
  background: var(--bg-color);
  background-image: url(../images/our-mission-bg.png);
  background-repeat: no-repeat;
  background-position: 100% center;
}
.our-mission .our-mission-image {
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
}
.our-mission .our-mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.our-mission .our-mission-content {
  background-color: rgba(255, 255, 255, 0.051);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(14.9px);
  display: flex;
  gap: 24px;
  flex-direction: column;
  height: 100%;
}

.our-mission .our-mission-content h4 {
  color: #afafaf;
  line-height: 32px;
  letter-spacing: -4%;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}

.our-mission .our-mission-content p {
  font-size: 32px;
  line-height: 48px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}
.cloud-header {
  max-width: 720px;
  margin: 0 auto 40px;
}
.cloud-header .heading-2 {
  margin-bottom: 8px;
}
/* Pricing */

.pricing {
  padding: 60px 0;
}
.pricing .cloud-header {
  max-width: 680px;
}
.pricing .pricing-section {
  background: #f8f9fa;
}

.pricing .pricing-toggle {
  display: inline-flex;
  background: #e9ecef;
  border-radius: 30px;
  padding: 6px;
  margin-bottom: 40px;
  position: relative;
  gap: 6px;
}

.pricing .pricing-toggle button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 65.5px;
  font-weight: 600;
  cursor: pointer;
  z-index: 2;
  line-height: 24px;
  font-size: 16px;
  width: 191px;
}
.pricing .toggle-indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  background: #4caf50;
  border-radius: 40px;
  transition: 0.35s ease;
  z-index: 1;
  box-shadow: 0px 3px 4px -2px var(--effectshadowe3);
}

.pricing .pricing-toggle.yearly .toggle-indicator {
  transform: translateX(100%);
}

.pricing .pricing-toggle button.active {
  color: #fff;
}

.pricing .pricing-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  border: 1px solid #12b76a;
  height: 100%;
  transition: 0.3s;
}

.pricing .pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing .active-card {
  border: 2px solid #4caf50;
}

.pricing .pricing-card .icon {
  max-width: 70px;
  margin-bottom: 24px;
}

.pricing .pricing-card h5 {
  font-weight: 400;
  margin-bottom: 8px;
  font-size: 24px;
  color: #6d6d6d;
  letter-spacing: -2%;
  line-height: 36px;
}

.pricing .price {
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -1%;
  color: #242424;
  margin-bottom: 0;
}
.pricing .text-muted {
  font-size: 16px;
  color: #4f4f4f !important;
  letter-spacing: -2%;
  margin-bottom: 24px;
}
.pricing .btn-outline-success {
  background: linear-gradient(
    93.39deg,
    #3d7fab -6.93%,
    #4da68b 36.87%,
    #51ac52 97.78%
  );
  width: 100%;
  position: relative;
  border-radius: 45px;
  padding: 1px;
  margin-bottom: 24px;
}
.pricing .btn-outline-success .child {
  padding: 14px;
  border-radius: 45px;
  background: #fff;
  position: relative;
  z-index: 2;
  font-size: 14px;
  color: #242424;
}

.pricing .pricing-card ul {
  list-style: none;
  padding: 0;
}
.pricing .btn-outline-success:hover .child {
  background: transparent;
  color: #fff;
}
.pricing .pricing-card ul li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  color: #4f4f4f;
  line-height: 24px;
  margin-bottom: 8px;
  letter-spacing: -2%;
}

.pricing .pricing-card ul li::before {
  content: "";
  background: url(../images/svg/feature-check.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 3px;
  color: #4caf50;
  height: 18px;
  width: 18px;
  background-position: center;
}
/* partners */

.partners {
  background: #f3f3f3;
  padding: 60px 0;
}
.faqs .cloud-header,
.partners .cloud-header {
  max-width: 740px;
}
.partner-slider {
  overflow: hidden;
  width: 100%;
}

.partner-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
}

.partner {
  flex: 0 0 auto; /* prevent shrinking */
}

.partner {
  flex: 0 0 auto;
}

.partner img {
  max-width: 224px;
  opacity: 0.7;
  transition: 0.3s;
  width: auto;
}

.partner img:hover {
  opacity: 1;
}
/* faqs */
.faqs {
  padding: 60px 0;
}

.faqs .accordion-item {
  transition: all 0.3s ease-in-out;
  border: 0;
  border-bottom: 1px solid var(--outline-med_em, #dadada);
  padding: 32px 0 32px 40px;
}

.faqs .accordion-button {
  background-color: transparent;
  border: 0;
  border-radius: 0 !important;
  box-shadow: none;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -2%;
  padding: 0;
  transition: all 0.3s ease-in-out;
  color: var(--secondary-color);
  line-height: 32px;
}
.faqs .accordion-button:not(.collapsed) {
  font-size: 36px;
  line-height: 52px;
}

.faqs .accordion-body {
  padding: 20px 0 0;
  color: #6d6d6d;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}
.faqs .accordion-item:first-of-type .accordion-button {
  border: 0;
}
.faqs .accordion-button::after {
  border: 1px solid var(--outline-low_em, #ececec);
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background-position: center;
}
.faqs .accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}
/* footer */
footer {
  background: var(--bg-color);
}
footer .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 46px;
  padding: 80px 0 32px;
}
footer .footer-logo {
  max-width: 141px;
}
footer p {
  color: #afafaf;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 24px;
}
footer .footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 40%;
}
footer .footer-left .social-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer .footer-left .social-row a {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  background: #51ac52;
  justify-content: center;
}
footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 46%;
}
footer .footer-links:last-child {
  width: 15%;
}

footer .footer-links h4 {
  color: #fff;
  font-size: 24px;
  line-height: 40px;
  margin-bottom: 0;
  font-weight: 600;
}
footer .footer-links a {
  color: #afafaf;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  line-height: 24px;
}

footer .footer-links a:hover {
  color: #fff;
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.251);
  padding: 32px 0 40px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  padding-left: 36px;
  font-size: 12px;
  color: #242424;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5;
  user-select: none;
  position: relative;
}

.checkbox-label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox-label .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid #c5c5c5;
  border-radius: 4px;
  transform: translateY(-50%);
  box-sizing: border-box;
}

.checkbox-label .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 2px;
  width: 5px;
  height: 14px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark {
  border-color: transparent;
  background: linear-gradient(
    93.39deg,
    #3d7fab -6.93%,
    #4da68b 36.87%,
    #51ac52 97.78%
  );
}

.checkbox-label input:checked ~ .checkmark::after {
  display: block;
}

.auth-wrapper {
  position: relative;
  background: #fbfbfb;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-wrapper:before,
.auth-wrapper:after {
  content: "";
  position: absolute;
}
.auth-wrapper:before {
  left: 0;
  top: 0;
  width: 342px;
  height: 672px;
  background: url(../images/bg-logo-1.png);
  background-repeat: no-repeat;
}
.auth-wrapper:after {
  right: 0;
  bottom: 0;
  width: 267px;
  height: 699px;
  background: url(../images/bg-logo-2.png);
  background-repeat: no-repeat;
}
.auth-wrapper .heading-2 {
  letter-spacing: -2%;
  margin-bottom: 2px;
}
.auth-wrapper .description {
  letter-spacing: -2%;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 36px;
}
.auth-wrapper .auth-container {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.auth-wrapper .auth-form {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--outline-med_em, #dadada);
  background: #fff;
  padding: 32px;
  border-radius: 24px;
}

.auth-wrapper .auth-form .form-group {
  margin-bottom: 20px;
}
.auth-wrapper .auth-form label {
  font-size: 16px;
  color: #4f4f4f;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 4px;
  display: block;
}

.auth-wrapper .auth-form .input-group {
  border: 1px solid var(--outline-med_em, #dadada);
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  gap: 16px;
  border-radius: 45px;
}
.auth-wrapper .auth-form .input-group input {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #242424;
}
.auth-wrapper .auth-form .input-group input:focus {
  box-shadow: none;
  outline: none;
}
.auth-wrapper .auth-form .input-group input::placeholder {
  color: #767676;
}
.auth-wrapper .auth-form .input-group .icon {
  height: 20px;
  width: 20px;
  font-size: 20px;
  color: #767676;
  display: flex;
  align-items: center;
}
.auth-wrapper .auth-form .input-group button.icon {
  border: 0;
}
.auth-wrapper .auth-form .auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.auth-wrapper .auth-form .auth-link {
  color: #39803a;
  text-underline-position: under;
  font-size: 14px;
  font-weight: 500;
}
.auth-wrapper .auth-form .btn-gradient {
  display: flex;
  width: 100%;
  justify-content: center;
}
.auth-wrapper .auth-form .or-wrapper {
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.auth-wrapper .auth-form .or-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  top: 50%;
  background: #ececec;
}
.auth-wrapper .auth-form .or-wrapper span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #6d6d6d;
  line-height: 24px;
  width: 100px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.auth-wrapper .auth-form .social-links {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
}
.auth-wrapper .auth-form .social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid #dadada;
  border-radius: 45px;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  color: #242424;
  font-weight: 500;
}
.auth-wrapper .auth-form .social-links a .icon {
  width: 20px;
  height: 20px;
}
.auth-wrapper .auth-form .social-links a:hover {
  border-color: #39803a;
}
.auth-wrapper .auth-form p {
  text-align: center;
  font-weight: 400;
  color: #242424;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}
.auth-wrapper .ri-eye-off-line {
  display: none;
}

/* cloud content */

.cloud-content {
  position: relative;
  background: #fbfbfb;
}

.cloud-content:before,
.cloud-content:after {
  content: "";
  position: absolute;
}
.cloud-content:before {
  left: 0;
  top: 100px;
  width: 342px;
  height: 672px;
  background: url(../images/bg-logo-1.png);
  background-repeat: no-repeat;
}
.cloud-content:after {
  right: 0;
  bottom: 100px;
  width: 267px;
  height: 699px;
  background: url(../images/bg-logo-2.png);
  background-repeat: no-repeat;
}
.cloud-content .section-padding {
  position: relative;
  max-width: 992px;
  margin: auto;
}
.cloud-content h2 {
  margin-bottom: 24px;
  letter-spacing: -2%;
}
.cloud-content h3 {
  color: var(--secondary-color);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -2%;
  margin-bottom: 12px;
}
.cloud-content ul {
}
.cloud-content ul li,
.cloud-content p {
  font-size: 24px;
  line-height: 36px;
  color: #242424;
  letter-spacing: -2%;
  font-weight: 400;
  margin-bottom: 12px;
}
.cloud-content .content-padding:not(:last-child) {
  margin-bottom: 40px;
}

/* Contact Us */

.contact-us {
  padding: 226px 0 120px;
  background: #fbfbfb;
}
.contact-us-wrapper {
  max-width: 750px;
  margin: 0 auto;
}
.contact-us .cloud-header {
  margin-bottom: 60px;
}

.contact-us .cloud-header .heading-2 {
  letter-spacing: -2%;
}
.contact-us .cloud-header p {
  max-width: 455px;
  margin: 0 auto;
  letter-spacing: -1%;
}
.contact-us .contact-form {
  margin: 0 auto;
  border: 1px solid var(--outline-med_em, #dadada);
  background: #fff;
  padding: 32px;
  border-radius: 24px;
}
.contact-us .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.tags-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-flow: wrap;
}

.tags-row button,
.tags-row span,
.tags-row a {
  text-decoration: none;
  border: 1px solid #dadada;
  padding: 8px 16px;
  background-color: #fff;
  border-radius: 45px;
  color: #6d6d6d;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.tags-row button:hover,
.tags-row button.focus,
.tags-row button.active
.tags-row span.active,
.tags-row a:hover,
.tags-row a.focus,
.tags-row a.active {
  border-color: #51ac52;
  color: #51ac52;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}
.contact-us .contact-form .form-2 {
  width: 100%;
}
.contact-us .contact-form .form-2 form {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
}

.contact-us .contact-form form label {
  font-size: 16px;
  color: #4f4f4f;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 4px;
  display: block;
}
.contact-us .contact-form .form-1 textarea {
  border: 1px solid var(--outline-med_em, #dadada);
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  gap: 14px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #242424;
  width: 100%;
}
.contact-us .contact-form textarea:focus {
  outline: none;
  box-shadow: none;
}
.contact-us .contact-form .form-1 .btn-gradient span {
  padding: 12px 16px;
}
.contact-us .contact-form .form-2 .textarea-wrapper {
  background: #f3f3f3;
  border: 1px solid #dadada;
  border-radius: 24px;
  padding: 11px 0;
  padding-right: 10px;
  width: 100%;
}

.contact-us .contact-form .form-2 textarea {
  border: none;
  background: transparent;
  resize: none;
  min-height: 24px;
  max-height: 200px;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  color: #242424;
  outline: none;
  padding: 0 13px;
  overflow-y: auto;
}
.contact-us .contact-form .form-2 textarea::placeholder,
.contact-us .contact-form .form-1 textarea::placeholder {
  color: #767676;
}
.contact-us .contact-form .form-2 .btn-gradient {
  height: 48px;
  width: 48px;
  flex: 0 0 48px; /* Fixed size */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px; /* Slight adjustment for alignment */
}
.chat-response-wrapper {
  padding-right: 15px;
  padding-bottom: 12px;
  margin-bottom: 28px;
  width: 100%;
}

.chat-response-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.chat-response-container .chat-send-msg {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
}

.chat-response-container .icon {
  background: #cbe8ca;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.chat-response-container .icon img {
  max-width: 24px;
}
.chat-response-container .chat-response-msg {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.chat-response-container .msg {
  font-size: 16px;
  font-weight: 500;
  color: #242424;
}
.chat-response-container .chat-send-msg .msg {
  font-weight: 600;
}
.chat-response-container .chat-response-msg .msg {
  border: 1px solid #ececec;
  border-radius: 20px;
  background: #f2f9f9;
  padding: 12px 16px;
  width: 75%;
  margin-left: auto;
}

.blogs-wrapper {
  padding: 206px 0 100px;
  background-color: #fbfbfb;
}
.blogs-wrapper .cloud-header {
  max-width: 600px;
}
.blogs-wrapper .blogs-header-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.blogs-wrapper .blogs-header-search .search-area {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f3f3f3;
  border-radius: 45px;
  padding: 8.2px 12px;
  width: 450px;
  border: 1px solid #dadada;
}
.blogs-wrapper .blogs-header-search .search-area .ri-search-line {
  font-size: 20px;
  color: #6d6d6d;
}
.blogs-wrapper .blogs-header-search .search-area input {
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #242424;
  width: calc(100% - 20px);
}
.blogs-wrapper .blogs-header-search .search-area input::placeholder {
  color: #767676;
}
.blogs-wrapper .blogs-header-search .search-area input:focus {
  outline: none;
  box-shadow: none;
}

.blogs-wrapper .single-full-blog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 12px;
  margin-bottom: 40px;
  border: 1px solid #ececec;
  border-radius: 24px;
}
.blogs-wrapper .single-full-blog .image-wrapper {
  overflow: hidden;
  height: 468px;
  width: 100%;
  border-radius: 12px;
  position: relative;
}
.blogs-wrapper .single-full-blog .image-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.16);
}
.blogs-wrapper .single-full-blog .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blogs-wrapper .blog-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 32px;
}
.blogs-wrapper .blog-info .developer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #242424;
  line-height: 24px;
}
.blogs-wrapper .blog-info .developer.date {
  color: #6d6d6d;
}
.blogs-wrapper .blog-content {
  padding: 32px;
}
.blogs-wrapper .blog-content h3,
.blogs-wrapper .blog-content h2 {
  color: #242424;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.blogs-wrapper .blog-content h2 {
  font-size: 32px;
  line-height: 46px;
  margin-bottom: 32px;
}
.blogs-wrapper .blog-content p {
  font-size: 24px;
  color: #6d6d6d;
  line-height: 36px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  margin-bottom: 32px;
  overflow: hidden;
}
.blogs-wrapper .blog-content .cloud-btn {
  height: 48px;
}
.blogs-wrapper .blog-content .cloud-btn span {
  padding: 12px 16px;
}
.blogs-wrapper .blog-heading {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 24px;
}
.blogs-wrapper .blog-content h3 {
  font-size: 24px;
  line-height: 30px;
}
.blogs-wrapper .single-blog {
  display: flex;
  padding-bottom: calc(var(--bs-gutter-x));
}
.blogs-wrapper .single-blog a {
  text-decoration: none;
  display: block;
  overflow: hidden;
  border: 1px solid #ececec;
  border-radius: 24px;
  height: 100%;
}
.blogs-wrapper .single-blog a:hover {
  box-shadow: 0px 6px 14px rgb(0 0 0 / 22%);
}
.blogs-wrapper .single-blog .blog-image {
  position: relative;
  height: 260px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.blogs-wrapper .single-blog .blog-image:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.blogs-wrapper .single-blog .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blogs-wrapper .single-blog .blog-info {
  margin: 0;
}
.blogs-wrapper .single-blog p {
  font-size: 15px;
  -webkit-line-clamp: 2;
  line-height: 24px;
}
.blog-detail-wrapper {
  padding: 146px 0 40px;
  background-color: #fbfbfb;
}
.blog-detail-container {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.blog-detail-container a {
  color: #00a1e1;
  text-decoration: none;
}

.blog-detail-wrapper .back-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #39803a;
  text-decoration: none;
  font-weight: 600;
  height: 48;
}

.blog-detail-container .heading-2 {
  letter-spacing: -2%;
}
.blog-detail-container .date {
  font-size: 16px;
  font-weight: 400;
  color: #6d6d6d;
  line-height: 24px;
}
.blog-detail-container .blog-image {
  height: 550;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.blog-detail-container .blog-image:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.blog-detail-container .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-detail-container h2,
.blog-detail-container h3,
.blog-detail-container h4,
.blog-detail-container h5,
.blog-detail-container h6 {
  font-weight: 600;
  color: #242424;
  margin-bottom: 0;
  letter-spacing: -2%;
  line-height: 1.3;
}
.blog-detail-container h2 {
  font-size: 32px;
}
.blog-detail-container h3 {
  font-size: 28px;
}
.blog-detail-container h4 {
  font-size: 24px;
}
.blog-detail-container h5 {
  font-size: 20px;
}
.blog-detail-container h6 {
  font-size: 16px;
}
.blog-detail-container ul li,
.blog-detail-container p {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -1%;
  color: #242424;
  margin-bottom: 0;
}
.blog-detail-container .sign-up-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #39803a;
  text-decoration: none;
  padding: 12px 16px;
}
.blog-detail-container .author-wrapper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ececec;
  padding: 12px;
  padding-right: 24px;
  border-radius: 100px;
  gap: 10px;
}
.blog-detail-container .author-wrapper .icon {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
}
.blog-detail-container .author-wrapper .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-detail-container .author-wrapper .name {
  color: #242424;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
}
.blog-detail-container .cloud-syntax {
  background-color: #fff;
  border: 1px solid #ececec;
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  font-size: 20px;
}
.blog-detail-container b {
  font-weight: 600;
  color: #242424;
}
.blog-detail-container hr {
  margin: 0;
}
.blog-detail-container .content-string {
  color: #ff0000;
}
.blog-detail-container strong,
.blog-detail-container .content-keyword {
  font-weight: 600;
  color: #242424;
}
.blog-detail-container blockquote {
  border-left: 4px solid #ccc;
  margin-top: 5px;
  padding-left: 16px;
  margin-bottom: 33px;
}
.disclaimer {
  margin-top: 106px;
}
@media (max-width: 1399px) {
  .our-mission .our-mission-image {
    height: 600px;
  }

  .home-banner img.banner-2 {
    height: auto;
  }
}

@media (max-width: 1024px) {
  .blogs-wrapper .blogs-header-search .search-area {
    width: 350px;
    padding: 10px 12px;
  }
  .blogs-wrapper .blogs-header-search .search-area input {
    font-size: 14px;
  }
  .tags-row button,
  .tags-row a {
    padding: 10px 14px;
    font-size: 14px;
    line-height: 22px;
  }
  .blogs-wrapper .blog-content h2 {
    font-size: 28px;
    line-height: 42px;
    margin-bottom: 24px;
  }
  .blogs-wrapper .blog-content p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 24px;
  }
  .blogs-wrapper .blog-content {
    padding: 24px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .home-banner .banner-content h1 {
    font-size: 64px;
  }
 }
@media (min-width: 992px) and (max-width: 1199px) { 
  .home-banner .banner-content h1 {
    font-size: 54px;
  }
}


@media (max-width: 991px) {

  .home-banner img.banner-2 {
    display: none;
  }

  header {
    padding: 12px 0;
  }
  header .logo {
    max-width: 100px;
  }
  header .mobile-menu-btn {
    border: 0;
    background-color: transparent;
    padding: 0;
    height: 30px;
    width: 30px;
    font-size: 24px;
    display: block;
  }
  header .header-row .header-menu {
    display: none;
  }
  .pricing .pricing-card {
    padding: 24px;
  }
  .pricing .pricing-card .icon {
    margin-bottom: 16px;
  }
  .pricing .pricing-card h5 {
    font-size: 20px;
    line-height: 30px;
  }
  .pricing .price {
    font-size: 28px;
  }
  .blogs-wrapper .blogs-header-search .search-area {
    width: 300px;
    padding: 8px 12px;
  }
  .tags-row button,
  .tags-row a {
    font-size: 12px;
  }
  .blogs-wrapper .single-full-blog {
    grid-template-columns: repeat(1, 1fr);
  }
  .blogs-wrapper .blog-content h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .blogs-wrapper .single-blog p {
    font-size: 14px !important;
    line-height: 24px;
  }
  .blogs-wrapper .blog-info .developer {
    font-size: 14px;
  }
  .blogs-wrapper {
    padding: 120px 0 60px;
  }
  footer .footer-links a {
    font-size: 16px;
  }
  footer .footer-bottom {
    padding: 28px 0 36px;
  }
  footer p {
    font-size: 14px;
  }

  .our-mission .our-mission-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  header.is-sticky {
    padding: 6px 0;
  }
  .contact-us .contact-form .form-1 .btn-gradient span {
    padding: 8px 12px;
  }
  .cloud-btn span {
    padding: 10px 20px;
    font-size: 12px;
  }
  .home-banner .banner-content h1 {
    font-size: 32px;
  }
  .home-banner .banner-content p {
    font-size: 18px;
  }
  .home-banner .banner-left {
    gap: 40px;
  }
  .home-banner {
    padding-top: 120px;
  }
  .home-banner img {
    height: auto;
  }
  .home-banner .banner-img-1 {
    margin-bottom: 40px;
  }

  .heading-2 {
    font-size: 24px;
    line-height: 36px;
  }
  .auth-wrapper .description,
  .description {
    line-height: 22px;
    font-size: 16px;
  }
  .blogs-wrapper .blogs-header-search {
    flex-flow: wrap;
    gap: 8px;
  }
  .blogs-wrapper .blogs-header-search .search-area {
    width: 100%;
  }
  .blogs-wrapper .single-full-blog {
    padding: 0;
  }
  .blogs-wrapper .blog-info {
    margin-bottom: 24px;
  }
  .blogs-wrapper .blog-content h2 {
    font-size: 24px;
    line-height: 36px;
  }
  .blogs-wrapper .blog-content p {
    font-size: 18px;
    line-height: 26px;
  }
  .blog-detail-container .blog-image,
  .blogs-wrapper .single-full-blog .image-wrapper {
    height: 260px;
  }
  .our-mission .our-mission-content h4 {
    font-size: 22px;
  }
  .our-mission .our-mission-content p,
  .about-us .about-content p {
    font-size: 20px;
  }
  .blogs-wrapper .blog-content .cloud-btn {
    height: 40px;
  }
  .blog-detail-container {
    gap: 16px;
  }
  .blog-detail-wrapper .back-btn {
    height: 36px;
  }
  .blog-detail-container .date {
    font-size: 14px;
  }
  .blog-detail-container ul li,
  .blog-detail-container p {
    font-size: 16px;
    line-height: 28px;
  }
  .blog-detail-container h2 {
    font-size: 28px;
  }
  .blog-detail-container h3 {
    font-size: 24px;
  }
  .blog-detail-container h4 {
    font-size: 20px;
  }
  .blog-detail-container .cloud-syntax {
    font-size: 14px;
  }
  .blog-detail-container h5 {
    font-size: 18px;
  }
  .blog-detail-container .author-wrapper .name {
    font-size: 16px;
  }
  .blog-detail-container .author-wrapper .icon {
    width: 48px;
    height: 48px;
  }
  .tags-row button,
  .tags-row a {
    padding: 6px 14px;
    line-height: 18px;
  }
  .about-us {
    padding: 30px 0;
  }
  .pricing .pricing-toggle button {
    font-size: 14px;
  }
  .faqs .accordion-item {
    padding: 16px 0 16px 20px;
  }
  .faqs .accordion-button {
    font-size: 18px;
  }
  .faqs .accordion-button:not(.collapsed) {
    font-size: 22px;
  }
  .faqs .accordion-body {
    font-size: 16px;
  }
  footer .footer-top {
    display: grid;
  }
  footer .footer-links a {
    font-size: 14px;
  }
  .pricing .pricing-toggle button {
    padding: 8px 40px;
    width: 140px;
  }
  .auth-wrapper .auth-container {
    padding: 40px 0;
  }
  .auth-wrapper .auth-form {
    padding: 24px;
    border-radius: 20px;
  }
  .auth-wrapper .auth-form label {
    font-size: 14px;
    line-height: 20px;
  }
  .auth-wrapper .auth-form .input-group {
    padding: 8px 12px;
  }
  .contact-us .contact-form textarea,
  .contact-us .contact-form form label,
  .auth-wrapper .auth-form p,
  .contact-us .contact-form .form-1 textarea,
  .auth-wrapper .auth-form .input-group input {
    font-size: 14px;
  }

  .auth-wrapper .auth-form .auth-row {
    flex-flow: wrap;
    gap: 12px;
  }
  .auth-wrapper .auth-form .auth-row .auth-link {
    margin-left: auto;
  }
  .auth-wrapper .auth-form .social-links a {
    padding: 10px 12px;
  }
  .contact-us {
    padding: 120px 0 60px;
  }
  .blog-detail-wrapper {
    padding: 100px 0 40px;
  }
  .contact-us .contact-form {
    padding: 16px;
    border-radius: 16px;
  }
  .chat-response-container .chat-send-msg {
    padding: 0;
  }
  .chat-response-container .msg {
    font-size: 13px;
  }
  .chat-response-container .chat-response-msg .msg {
    padding: 8px 13px;
    font-size: 12px;
  }
  .contact-us .contact-form .form-2 .btn-gradient {
    padding: 0;
  }
  .contact-us .contact-form .form-2 textarea {
    font-size: 12px;
  }
  .our-mission .our-mission-content {
    padding: 24px;
  }
  footer .footer-bottom {
    padding: 24px 0 30px;
  }
  footer .footer-links,
  footer .footer-links:last-child,
  footer .footer-left {
    width: 100%;
  }
}
