@font-face {
  font-family: "MontserratAlt1";
  src: url("../fonts/MontserratAlt1-Regular.ttf");
}

:root {
  --font-main: -apple-system, BlinkMacSystemFont, "Nunito Sans", sans-serif;
  --font-primary: "Nunito Sans", sans-serif;
  --font-secondary: Quicksand, sans-serif;

  --kw-white: #ffffff;
  --kw-black: #000000;
  --kw-teal: #0d9489;
  --linear-top-left: #182939;
  --linear-bottom-right: #173357;
  --kw-blue: #2973b2;
  --kw-purple: rgba(83, 32, 49, 1);
  --kw-tech-white: rgba(249, 251, 252, 1);
  --kw-tech-light-grey: rgba(242, 242, 242, 0.38);
  --kw-tech-white-grey: rgba(245, 250, 252, 1);
  --kw-tech-grey: rgba(136, 136, 136, 1);
  --kw-tech-black: rgba(51, 51, 51, 1);
  --kw-tech-white-border: rgba(238, 244, 249, 1);
  --linear-blue: linear-gradient(
    90deg,
    rgba(24, 41, 57, 1) 0%,
    rgba(46, 84, 135, 1) 100%
  );
  --linear-light-blue: linear-gradient(
    90deg,
    rgba(47, 86, 124, 1) 0%,
    rgba(32, 55, 77, 1) 80%,
    rgba(24, 41, 57, 1) 100%
  );
  --linear-purple: linear-gradient(
    to right,
    rgba(164, 43, 83, 1) 0%,
    rgba(123, 35, 64, 1) 50%,
    rgba(83, 32, 49, 1) 100%
  );
  --linear-sidebar: linear-gradient(var(--kw-purple), var(--linear-top-left));
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  cursor: pointer;
  background-color: var(--kw-white);
  font-family: var(--font-main);
}

a {
  text-decoration: none;
}

/***************** navbar *********************/
.top-bar {
  height: 90px;
  position: absolute;
  padding: 18px 0;
  top: 10px;
}

.nav {
  width: 100%;
  opacity: 100%;
}

.navbar {
  height: 54px;
  justify-content: space-between;
  padding: 0 15px;
}

.kalority {
  display: flex;
  align-items: center;
  width: 230px;
  height: 45px;
}

.kalority-logo {
  height: 45px;
  width: 45px;
  margin-top: -10px;
}

.navbar-links,
.nav-bar {
  display: flex;
  align-items: center;
  list-style: none;
}

.navbar-links {
  padding-right: 70px;
}

.nav-bar {
  justify-content: flex-end;
}

.nav-item .nav-link {
  color: var(--kw-purple);
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
}

.nav-link:hover {
  color: var(--linear-bottom-right);
}

.button {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 3%;
  background: var(--linear-light-blue);
  color: var(--kw-white);
  width: 155px;
  height: 54px;
  border-radius: 30px;
  opacity: 100%;
  border: none;
}

.kalority-btn {
  background: var(--linear-purple);
}

.play-btn {
  margin-top: 10px;
}

.google-play-button {
  width: 250px;
  padding: 10px 0;
  font-size: 26px;
  line-height: 22px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: var(--font-secondary);
  background: var(--linear-light-blue);
  color: var(--kw-white);
}

.btn-small-font {
  font-size: 14px;
}

.send-button {
  width: 155px;
}

.google-play-img {
  height: 50px;
}

.google-play-link {
  color: var(--kw-white);
  margin-left: 8px;
}

.fixed-nav {
  position: fixed;
  top: 0;
  background-color: var(--kw-white);
  z-index: 9999;
  box-shadow: 0 1px 5px 0 rgba(36, 36, 36, 0.12);
}

.hamburger-menu {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.brand-name {
  font-family: "MontserratAlt1";
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 3%;
  text-transform: uppercase;
  margin-left: 10px;
}

.brand-name-purple {
  color: var(--kw-purple);
}

.brand-footer-name {
  margin-left: -2px;
  font-size: 40px;
  color: var(--kw-white);
}

/*********** dropdown ***********/
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: var(--kw-white);
  list-style: none;
  padding: 0;
  min-width: 160px;
  margin-top: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}

.dropdown-menu li {
  padding: 8px 16px;
}

.dropdown-menu li:hover {
  background-color: #f0f0f0;
}

.nav-item.dropdown {
  position: relative;
}

.modal-menu .dropdown-menu {
  position: static;
  padding-left: 20px;
  box-shadow: none;
}

.dropdown-icon {
  font-size: 15px;
  margin: 0 0 2px 5px;
}

.modal-item .dropdown-icon {
  font-size: 18px;
}

/* ****************************************************** */

/********************* Typography ******************/
.landing-title {
  font-family: var(--font-secondary);
  font-size: 70px;
  letter-spacing: -3.5px;
  line-height: 1.2;
  color: var(--kw-black);
  text-size-adjust: 100%;
}

.purple {
  color: var(--kw-purple);
}

.section-title {
  font-family: var(--font-primary);
  font-size: 13px;
  line-height: 1.2;
  color: var(--kw-purple);
}

.light {
  font-weight: 300;
}

.bold {
  font-weight: 700;
}

.section-heading {
  font-family: var(--font-secondary);
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -2px;
  color: var(--kw-tech-black);
  width: 100%;
}

.card-title {
  font-family: var(--font-secondary);
  font-size: 30px;
  color: var(--kw-tech-black);
  line-height: 1.2;
  letter-spacing: -1.5px;
}

.card-subtitle {
  font-family: var(--font-secondary);
  font-size: 24px;
  color: var(--kw-tech-black);
  line-height: 1.2;
  margin-top: 25px;
  margin-bottom: 20px;
}

.smaller-font {
  font-size: 18px;
  margin: 0 0 10px;
}

.savix-size {
  font-size: 60px;
}

.text {
  font-size: 18px;
  font-weight: 400;
  color: var(--kw-tech-grey);
  line-height: 1.6;
  letter-spacing: 3%;
  text-size-adjust: 100%;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.link-to-project {
  color: var(--kw-purple);
}

.savix-card-content {
  margin-left: 20px;
}

.savix-ig-product-content {
  margin-right: 20px;
}

.savix-image-position {
  margin-top: -20px;
}

/* **************************************************** */

/****************** Layouts ******************************/
.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ************side-bar *********** */
.modal-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  font-family: Montserrat;
  top: -10px;
  left: 0;
  background: var(--linear-sidebar);
  width: 200px;
  padding: 20px;
  width: 100%;
  height: 100vh;
  gap: 20px;
}

.modal-nav {
  justify-content: space-between;
  align-items: unset;
  color: var(--kw-white);
}

.brand {
  margin-left: 0;
  padding-left: 20px;
  color: var(--kw-white);
}

.modal-link {
  color: var(--kw-white);
  font-size: 24px;
}

.modal-item {
  margin: 20px 0;
}

.modal-links {
  margin: 20px 0;
  list-style: none;
  padding-left: 20px;
}

.modal-row {
  justify-content: unset;
}

/* ********************************** */

.hero-section {
  padding: 50px 0;
  min-height: 100vh;
}

.hero-img {
  width: 100%;
  height: 500px;
}

.savix-image {
  width: 600px;
  height: auto;
  padding: 0 12px;
}

.savix-mis-icon {
  padding-bottom: 20px;
}

.hero-img2 {
  display: none;
}

.savix-hero-img {
  width: 290px;
  height: auto;
  border-radius: 18px;
  box-shadow: rgba(0, 0, 0, 0.6) 0px 10px 15px 0px;
}

.hero-section .savix-hero-img {
  margin-left: 60px;
}

.hero-heading-content {
  padding: 0 15px;
  width: 640px;
}

.section-title-margin {
  margin: 19px 0 20px;
}

.main-sections {
  background-color: var(--kw-tech-white);
  width: 100%;
  padding: 140px 0;
}

#savix-suite {
  padding: 100px 0;
}

#savix-content {
  padding: 70px 0 100px;
}

.service-card {
  background-color: var(--kw-white);
  max-width: 30%;
  max-height: 100%;
  width: 380px;
  height: 430px;
  padding: 50px 30px;
  box-shadow: 0 0 68px 0 rgba(174, 175, 175, 0.17);
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 15px;
}

.savix-ig-service-card {
  box-shadow: none;
  align-items: center;
}

.our-savix-ig-card {
  max-width: 100%;
  background-color: var(--kw-white);
  box-shadow: 0 0 68px 0 rgba(174, 175, 175, 0.17);
  text-size-adjust: 100%;
  margin-bottom: -190px;
  padding: 50px;
}

.savix-ig-content-section {
  padding: 0 15px;
  margin: 0 auto;
}

#suite-card {
  margin: 0 0 -180px;
  width: 800px;
}

.products-section {
  padding: 120px 0 0;
}

.savix-product-section {
  padding: 140px 0 60px;
}

.savix-products-content {
  gap: 35px;
  margin-top: -50px;
}

.savix-section {
  padding: 0 0 140px;
}

.product-service-card,
.savix-ig-card {
  max-width: 50%;
  width: 445px;
  padding: 50px 15px;
  justify-content: center;
  align-items: center;
  margin: 0 15px 50px;
  height: 600px;
}

.savix-ig-card,
.savix-ig-product-card {
  width: 520px;
  padding: 0 15px;
  margin: 0;
  height: auto;
}

.savix-ig-product-card {
  width: 420px;
  height: 145px;
  align-items: flex-start;
}

.card-border {
  border-right: 1px solid var(--kw-tech-white-border);
}

.savix-card-image {
  width: 80px;
  height: 80px;
}

.savix-card-image-2 {
  width: 50px;
  height: 50px;
}

.savix-ig-section {
  padding: 0 0 140px;
}

.screens-section {
  margin: 0 15px;
  max-width: 32%;
  padding: 0 15px;
}

.text-content {
  margin-top: 10px;
}

/* *************************************************** */

.container {
  text-size-adjust: 100%;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.container-pt {
  padding: 60px 0 0;
}

.padding-sides {
  padding: 0 15px;
}

.savix-section-container {
  padding: 60px 15px 0;
}

.savix-ig-container {
  padding: 0;
  width: 1140px;
  margin: 0 97px;
}

.savix-ig-product-container {
  padding-top: 0;
}

.screen-1 {
  display: none;
}

.savix-ig-content {
  width: 570px;
  padding: 0 15px;
}

.savix-ig-heading {
  padding: 0 0 30px;
}

.contact-container {
  align-items: flex-start;
  margin: 0 auto;
}

.contact-section {
  max-width: 33%;
  padding: 0 15px;
  width: 380px;
}

.contact-heading {
  margin: -7px 0 0 -2px;
  width: 100%;
  line-height: 1.2;
  font-size: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  row-gap: 27px;
  max-width: 67%;
  width: 760px;
  padding: 0 15px;
}

.contact-form-holder {
  width: 760px;
  display: flex;
  flex-direction: row;
}

.holder-1 {
  padding-right: 15px;
}

.holder-2 {
  padding-left: 15px;
}

#input-value,
.phone-email-value,
#message-value {
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 400;
  color: var(--kw-black);
  line-height: 35px;
  letter-spacing: normal;
  background-color: var(--kw-tech-white-grey);
  width: 730px;
  height: 82px;
  padding: 15px 30px;
  justify-content: center;
  border-radius: 30px;
  border: none;
}

.phone-email-value {
  width: 350px;
}

#message-value {
  height: 241px;
}

address {
  margin-top: 20px;
}

.address-icon {
  width: 25px;
  height: 25px;
}

.pin-location {
  width: 30px;
  margin-left: -2px;
}

.address-row {
  justify-content: unset;
  margin-left: -2px;
}

.address-first-row {
  align-items: start;
}

.address-margin {
  margin-top: 20px;
}

.description {
  font-style: normal;
  padding-left: 20px;
  font-size: 18px;
  color: var(--kw-tech-grey);
  line-height: 1.3;
}

.footer-description {
  color: var(--kw-white);
}

.social {
  justify-content: unset;
  margin: 20px 0 0 -15px;
}

.social-footer {
  margin-left: 0;
  margin-top: 10px;
  gap: 20px;
}

.white-bg-section {
  background-color: var(--kw-white);
}

.grey-bg-section {
  background-color: var(--kw-tech-white);
}

.card-image {
  width: 100%;
  height: 245px;
  max-width: 100%;
  max-height: 100%;
  margin: 23px auto 23px;
}

.social-image {
  width: 42px;
  height: 41px;
  margin: 10px 0 0 10px;
}

.x-image {
  width: 30px;
  height: 30px;
}

.custom-image-container {
  width: 100%;
}

.custom-icon {
  color: var(--kw-white);
}

.custom-image {
  position: relative;
  width: 120px;
  height: 120px;
  flex-direction: unset;
  border-radius: 50%;
  background-color: var(--kw-white);
  border: 1px solid var(--kw-tech-white-border);
}

.custom-icon-container {
  position: absolute;
  top: -2px;
  right: -6px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--kw-blue);
  flex-direction: unset;
}

.custom-num {
  color: var(--kw-blue);
}

/* ********* footer ************* */
.footer-container {
  background: var(--linear-blue);
}

.footer-address {
  margin-top: 0;
}

.footer-section {
  padding: 75px 0;
  margin: 0 auto;
}

.footer-contact-info {
  font-size: 20px;
  color: var(--kw-white);
  list-style: none;
  font-style: normal;
  margin-top: 15px;
  margin-bottom: 0;
}

.footer-link-info {
  margin-bottom: 20px;
}

.footer-link {
  margin-top: 10px;
}

.footer-cards-section {
  max-width: 30%;
  width: 350px;
  padding: 0 15px;
  line-height: 24px;
  margin: 0 15px;
}

.footer-links-container {
  margin-left: 30px;
  margin-bottom: 50px;
  padding-left: 30px;
}

/* ******************************************* */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .landing-title {
    font-size: 60px;
  }

  .savix-size,
  .savix-ig-size {
    font-size: 50px;
  }

  .hero-section {
    min-height: 80vh;
  }

  .hero-heading-content {
    width: 600px;
  }

  .hero-img {
    width: 400px;
    height: 400px;
  }

  .savix-image {
    width: 500px;
  }

  .products-section {
    padding: 0;
  }

  .contact-heading {
    font-size: 48px;
  }

  .card-subtitle {
    font-size: 20px;
  }

  .text {
    font-size: 16px;
  }

  .description,
  .footer-description {
    font-size: 18px;
  }

  .contact-section,
  .contact-form,
  .contact-form-holder {
    width: 100%;
  }

  .holder-1,
  .holder-2 {
    width: 100%;
  }

  #input-value,
  .phone-email-value,
  #message-value {
    font-size: 18px;
    width: 100%;
  }

  .social,
  .footer-link {
    margin-top: 10px;
  }

  .savix-products-content {
    padding-right: 15px;
    gap: 10px;
  }

  .p-left {
    padding-left: 15px;
  }

  .savix-ig-card {
    width: 430px;
    height: 130px;
  }

  .savix-ig-product-card {
    width: 320px;
    height: 165px;
    align-items: flex-start;
  }

  .footer-links-container {
    margin-bottom: 30px;
  }

  .footer-link-info {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-links,
  .btn-in-touch {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .modal-menu.active {
    display: flex;
  }

  .container {
    margin-left: 25px;
    margin-right: 25px;
  }

  .hero-section .flex-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-img {
    display: none;
  }

  .hero-img2 {
    display: block;
    width: 650px;
    height: 490px;
    padding: 0 15px;
    margin-top: 20px;
  }

  .savix-ig-size {
    font-size: 50px;
  }

  .savix-hero-img {
    margin-top: 20px;
  }

  .hero-section .savix-hero-img {
    margin-left: 0;
  }

  .savix-image {
    margin-top: 20px;
  }

  .services,
  .savix-section-container {
    display: flex;
    flex-direction: column;
  }

  .main-sections {
    padding: 100px 0;
  }

  .our-service-card {
    max-width: 100%;
    width: 690px;
    height: 350px;
    margin: 0 0 50px;
  }

  .product-service-card {
    width: 100%;
    max-width: 100%;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-section {
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }

  .contact-form {
    max-width: 100%;
    width: 100%;
  }

  .contact-heading {
    font-size: 48px;
  }

  .card-subtitle {
    font-size: 22px;
  }

  .text {
    font-size: 18px;
  }

  .contact-form-holder,
  .holder-1,
  .holder-2 {
    width: 100%;
  }

  #input-value,
  .phone-email-value,
  #message-value {
    font-size: 18px;
    width: 100%;
  }

  .description,
  .footer-description {
    font-size: 18px;
  }

  .address-margin,
  .social,
  .footer-link {
    margin-top: 10px;
  }

  .footer-section {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-social-container {
    z-index: 2;
    width: 100%;
    max-width: 66%;
    height: 100px;
  }

  .footer-address {
    z-index: 3;
    max-width: 42%;
  }

  .footer-links-container {
    z-index: 4;
    max-width: 58%;
    margin-left: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
  }

  .footer-link-info {
    margin-bottom: 10px;
  }

  .savix-position-column {
    flex-direction: column;
  }

  .savix-ig-card {
    max-width: 100%;
    width: 100%;
    height: 140px;
  }

  .card-border {
    border-right: none;
  }

  .savix-card-content {
    width: 100%;
  }

  .savix-ig-product-container {
    flex-wrap: wrap;
    row-gap: 25px;
  }

  .screen-1 {
    display: block;
    max-width: 100%;
    width: 100%;
  }

  .screen-2 {
    display: none;
  }

  .savix-screen {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
  }

  .hero-section .savix-screen {
    justify-content: unset;
  }

  #suite-card {
    width: 700px;
  }

  .resources-subtitle {
    font-size: 18px;
  }

  .savix-products-content {
    max-width: 50%;
    margin-top: 0;
  }

  .savix-ig-product-card {
    width: 100%;
    height: 165px;
  }

  .screen-size {
    width: 200px;
    height: 411px;
  }
}
@media only screen and (max-width: 767px) {
  .landing-title {
    font-size: 55px;
    letter-spacing: -2.75px;
  }

  .savix-image {
    width: 540px;
  }

  .hero-section {
    padding: 80px 0 50px;
    min-height: auto;
  }

  .container {
    margin: 0 auto;
    padding: 60px 15px 0;
  }

  .main-sections {
    padding: 30px 0 0;
  }

  .hero-container {
    padding-top: 50px;
  }

  .hero-img2 {
    display: block;
    width: 540px;
    height: 490px;
    padding: 0;
    margin-top: 20px;
  }

  .hero-heading-content {
    width: 540px;
    padding: 0;
  }

  .products {
    display: flex;
    flex-direction: column;
  }

  .our-service-card {
    width: 375px;
    height: 390px;
  }

  .our-savix-ig-card {
    max-width: 100%;
    margin: 0 0 -100px;
  }

  #suite-card {
    width: 550px;
  }

  .product-service-card {
    width: 420px;
  }

  .contact-service-container {
    padding-bottom: 70px;
  }

  .contact-section {
    padding: 0;
  }

  .contact-container {
    padding-top: 0;
  }

  .contact-form {
    gap: 20px;
    padding: 0;
  }

  .card-subtitle {
    font-size: 20px;
  }

  .holder-1 {
    padding-right: 0;
  }

  .holder-2 {
    padding-left: 0;
  }

  #input-value,
  .phone-email-value,
  #message-value,
  .send-button {
    height: 54px;
  }

  .contact-form-holder {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  #message-value {
    height: 150px;
  }

  .description {
    font-size: 16px;
  }

  .address-margin,
  .social,
  .footer-link {
    margin-top: 10px;
  }

  .footer-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 0;
  }

  .social-footer {
    gap: 10px;
  }

  .footer-cards-section {
    max-width: 100%;
    width: 540px;
  }

  .footer-address {
    margin-top: 20px;
  }

  .footer-links-container {
    margin: 20px 15px 30px;
    padding-left: 15px;
  }

  .savix-ig-card {
    width: 440px;
  }

  .savix-ig-product-container {
    flex-direction: column;
  }

  .savix-screen {
    margin-top: 30px;
  }

  .savix-products-content {
    max-width: 100%;
    margin-top: 20px;
    padding: 0;
    gap: 0;
  }

  .savix-card-image-2 {
    margin-bottom: 15px;
  }

  .savix-ig-product-card {
    flex-direction: column;
    align-items: center;
    height: 200px;
  }

  .column-reverse {
    flex-direction: column-reverse;
  }

  .subtitle,
  .service-text-content {
    text-align: center;
  }

  .resources-container,
  .screens-container {
    flex-direction: column;
    padding: 50px 0 0;
  }

  .savix-ig-service-card,
  .screens-section {
    max-width: 100%;
  }

  .savix-ig-service-card {
    padding: 0 15px;
    margin: 0;
    height: 320px;
  }

  .screens-section {
    margin-bottom: 25px;
  }

  .savix-ig-section {
    padding: 0;
  }

  .screen-size {
    width: 290px;
    height: 585px;
  }
}

@media only screen and (max-width: 575px) {
  .brand-name {
    font-size: 24px;
  }

  .section-heading {
    font-size: 35px;
    letter-spacing: -1.75px;
  }

  .google-play-button {
    width: 100%;
  }

  .landing-title {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .main-sections {
    padding: 15px 0 0;
  }

  #savix-suite {
    padding: 50px 0;
  }

  #savix-content {
    padding: 40px 0;
  }

  #suite-card {
    padding: 30px;
    margin: 0 0 -100px;
  }

  .hero-section {
    padding: 80px 0 0;
    min-height: 60vh;
  }

  .savix-size {
    font-size: 36px;
  }

  .hero-container {
    padding-bottom: 20px;
  }

  .hero-img2,
  .savix-image {
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .savix-hero-img {
    margin: 20px 0 0 0;
    height: 585px;
  }

  .hero-section .savix-screen {
    justify-content: center;
  }

  .hero-heading-content {
    width: 100%;
  }

  .main-section {
    padding: 70px 0 0;
  }

  .products-section {
    padding: 0;
  }

  .savix-section {
    padding: 0 0 100px;
  }

  .our-service-card {
    width: 100%;
    height: 100%;
  }

  .product-service-card {
    max-width: 100%;
    width: 100%;
  }

  .contact-service-container {
    padding: 0 0 70px;
  }

  .contact-form {
    gap: 10px;
  }

  .contact-heading {
    font-size: 35px;
    letter-spacing: -1.75px;
  }

  .contact-form-holder {
    gap: 10px;
  }

  .footer-cards-section {
    width: 100%;
    margin: 0 auto;
  }

  .footer-links-container {
    margin: 20px 0 30px;
  }

  .savix-position-column,
  .savix-ig-card {
    flex-direction: column;
  }

  .savix-ig-card {
    width: 100%;
    height: 260px;
    align-items: flex-start;
  }

  .savix-card-content {
    margin: 0;
  }

  .savix-ig-product-container {
    padding-top: 60px;
  }

  .screen-1 {
    padding-bottom: 40px;
  }

  .savix-products-content {
    margin-top: 0;
  }

  .savix-text-content {
    text-align: left;
  }

  .savix-card-image {
    margin-bottom: 15px;
  }

  .savix-ig-product-card {
    height: 220px;
    width: 100%;
  }

  .savix-ig-product-content {
    margin-right: 0;
  }

  .screens-container {
    margin: 0;
  }

  .savix-ig-content {
    width: 100%;
  }
}
