@import url(https://fonts.googleapis.com/css2?family=Red + Hat + Display&display=swap);
@import url(
  https://fonts.googleapis.com/css2?family=Montserrat:ital,
  wght@0,
  400;0,
  700;1,
  600&display=swap
);
@import url(
  https://fonts.googleapis.com/css2?family=Roboto + Condensed:ital,
  wght@0,
  300;0,
  400;0,
  700;1,
  300;1,
  400&display=swap
);
@import url(https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto&display=swap);

@font-face {
  font-family: "whatswhat";
  src: url("/fonts/whatswhat/whatswhat.eot?99fhh8");
  src: url("/fonts/whatswhat/whatswhat.eot?99fhh8#iefix")
      format("embedded-opentype"),
    url("/fonts/whatswhat/whatswhat.ttf?99fhh8") format("truetype"),
    url("/fonts/whatswhat/whatswhat.woff?99fhh8") format("woff"),
    url("/fonts/whatswhat/whatswhat.svg?99fhh8#sola") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

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

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}


#toggle-switch{
    display:flex;
    gap:10px;
    width: 200px;
    height: 60px;
    margin-top:50px;
    margin-left: auto;
    margin-right: auto;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: lightgrey;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: lightgrey;
}

input:focus + .slider {
  box-shadow: 0 0 1px lightgrey;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.terms-and-conditions,
.privacy-policy {
  margin: 0;
  padding: 16px;
  box-sizing: border-box;
  width: 100vw;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  color: black;
}

.terms-and-conditions h1,
.privacy-policy h1 {
  font-weight: bold;
  margin: 32px 0;
  color: #062335;
}

/* ↓↓↓ MOBILE 0px to 768px ↓↓↓ */

/* ↓↓↓ ADVERTISE HEADER ↓↓↓ */
.advertise-header {
  width: 100vw;
  padding: 16px 16px 180px 16px;
  font-size: 18px;
  background-image: linear-gradient(to top, #71d8b1, #ffffff);
}

.header-title {
  width: 100%;
  margin-bottom: 40px;
}

.header-title .title,
.header-message,
.priceplans-title {
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
  text-align: center;
  color: #034d76;
}

.title {
  font-size: 20px;
}

.text-green {
  color: #38c172;
}

.header-container {
  display: flex;
  flex-direction: column;
}
.header-discount {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-discount #discount-img {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
  padding-bottom: 40px;
}

.header-message {
  order: 2;
  border: 2px solid #034d76;
  border-radius: 32px;
  padding: 16px 8px;
}

.header-discount img {
  width: 80%;
  max-width: 90%;
}

/* ↑↑↑ ADVERTISE HEADER ↑↑↑ */

/* ↓↓↓ ADVERTISE PRICEPLANS ↓↓↓ */
#priceplan-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: bolder;
  text-align: center;
  color: #034d76;
}

.advertise-priceplans-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 16px;
  margin-top: -140px;
}

.card {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: 100%;
  max-width: 400px;
  margin: 32px auto;
  border-radius: 24px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #034d76;
  box-shadow: 0px 3px 30px #aaaaaa;
}

.divider {
  width: 80%;
  margin: 8px auto;
  border-top: 2px solid white;
}

.card .card-header {
  padding-bottom: 12px;
  border-radius: 24px 24px 0 0;
}

.card .card-footer {
  padding: 22px 12px;
  color: white;
  border-radius: 0 0 24px 24px;
}

.card .card-icon {
  width: 72px;
  height: 72px;
  margin-top: -32px;
  padding: 12px;
  border-radius: 1000px;
  background-color: white;
}

.card .priceplan-title {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.card .body-row {
  padding: 14px;
  display: flex;
  text-align: left;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: white;
}

.body-row p {
  margin-right: 8px;
}

.no-mobile {
  display: none !important;
}

.card .body-row:nth-child(odd) {
  background-color: #e4f8f0;
}

#names-only {
  display: none;
}

#basic .card-header,
#basic .card-footer {
  background-image: linear-gradient(to top, #a8a8a8, #c7c7c7, #a8a8a8);
}

#basic .card-icon {
  border: 2px solid gray;
}

#pro .card-header,
#pro .card-footer {
  background-image: linear-gradient(to top, #40ab84, #67e0b4, #40ab84);
}

#pro .card-icon {
  border: 2px solid #58cca2;
}

#premium .card-header,
#premium .card-footer {
  background-image: linear-gradient(to top, #143b53, #315d79, #143b53);
}

#premium .card-icon {
  border: 2px solid #254f69;
}

#elite .card-header,
#elite .card-footer {
  background-image: linear-gradient(to top, #ab7817, #f3da4f, #ab7817);
}

#elite .card-icon {
  border: 2px solid #dfbf3f;
}

#enterprise .card-header,
#enterprise .card-footer {
  background-image: linear-gradient(to top, #4b0004, #fe001c, #4b0004);
}

#enterprise .card-icon {
  border: 2px solid #fe001c;
}

.signup-btn {
  width: 70%;
  margin: 0 auto;
  padding: 12px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  border-radius: 12px;
  background-color: white;
}

#pro .signup-btn a {
  color: #40ab84;
}

#premium .signup-btn a {
  color: #254f69;
}

#elite .signup-btn a {
  color: #dfbf3f;
}

#enterprise .signup-btn a {
  color: #4b0004;
}

.amazing {
  margin-bottom: 16px;
}

.check-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 2px;
  border-radius: 48px;
  text-align: center;
  font-weight: 600;
}

#bold {
  fill: red;
}

#basic .check-svg {
  border: 2px solid gray;
  color: gray;
}

#basic #bold {
  fill: gray;
}

#pro .check-svg {
  border: 2px solid #58cca2;
  color: #58cca2;
}

#pro #bold {
  fill: #58cca2;
}

#premium .check-svg {
  border: 2px solid #143b53;
  color: #143b53;
}

#premium #bold {
  fill: #143b53;
}

#elite .check-svg {
  border: 2px solid #ab7817;
  color: #ab7817;
}

#elite #bold {
  fill: #ab7817;
}

.note {
  width: 100vw;
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
  text-align: center;
  color: #034d76;
  padding: 16px;
}

/* ↑↑↑ ADVERTISE PRICEPLANS ↑↑↑ */

/* ↓↓↓ TESTIMONIALS CAROUSEL ↓↓↓*/
.testimonials-container {
  overflow: hidden;
  position: relative;
}

.section__four .review__carousel {
  width: 90%;
  max-width: 200px;
  padding: 48px;
}

.arrow-left {
  width: 100px;
  height: 100px;
  padding: 24px;
  border-radius: 50%;
  background-color: #58cca2;
  position: absolute;
  left: -36px;
  top: 50%;
}

.arrow-right {
  width: 100px;
  height: 100px;
  padding: 24px;
  border-radius: 50%;
  background-color: #58cca2;
  position: absolute;
  right: -36px;
  top: 50%;
}

/* ↓↓↓ TESTIMONIALS CAROUSEL ↓↓↓ -------------------------------------------------------------------------------------------------------*/
.test {
  float: left;
  position: relative;
  padding: 30px 0;
  z-index: 1;
  width: 100%;
}
.section-title {
  float: left;
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}
.section-title h2 {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 34px;
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
  color: #034d76;
}
.section-separator {
  float: left;
  width: 100%;
  position: relative;
}
.section-separator:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 0;
  transform: translate(-50%);
  height: 4px;
  width: 100px;
  border-radius: 3px;
  background-color: #4bcd9d;
}
.swiper-container {
  width: 100%;
  height: 100%;
}
.listing-carousel-button {
  width: 80px;
  height: 60px;
  position: absolute;
  top: 50%;
  line-height: 50px;
  z-index: 100;
  cursor: pointer;
  color: white;
  background: #4bcd9d;
  transition: all 200ms linear;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.listing-carousel-button.listing-carousel-button-next {
  right: -30px;
  padding-right: 20px;
  border-radius: 60px 0 0 60px;
}
.listing-carousel-button.listing-carousel-button-prev {
  left: -30px;
  padding-left: 20px;
  border-radius: 0 60px 60px 0;
}
.testi-item {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  transform: scale(0.9);
  border-radius: 12px;
  background: rgba(88, 204, 162, 1);
  box-shadow: 0px 3px 10px #58cca2;
  margin: 20px 16px;
}
.testi-title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #034d76;
}
.testi-item .section-separator::before {
  width: 60px;
  height: 3px;
}
.testimonials-text {
  padding: 24px 40px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.testimonials-text-after {
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  color: #ccc;
  opacity: 0.3;
  font-size: 35px;
  transition: all 400ms linear;
  bottom: 25px;
  right: 30px;
}
.testimonials-text-before {
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  color: #ccc;
  opacity: 0.3;
  font-size: 35px;
  transition: all 400ms linear;
  top: 25px;
  left: 30px;
}
.testimonials-text-before i {
  padding: 10px;
  color: #034d76;
  border: 1px solid #034d76;
  border-radius: 50%;
  box-shadow: inset 0px 3px 10px #034d76;
}
.testimonials-text .listing-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.listing-rating i {
  margin: 0 8px;
  font-size: 24px;
  color: #42a17c;
}
.testimonials-carousel .swiper-slide {
  padding: 30px auto;
}

.swiper-slide-active .testi-item {
  opacity: 1;
  transform: scale(1);
  background-color: white;
}

.swiper-slide-active {
  z-index: 999;
}
.testimonials-text p {
  padding-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 14px;
  color: #034d76;
}
/* ↑↑↑ TESTIMONIALS CAROUSEL ↑↑↑ -----------------------------------------------------------------------------------------------------*/

/* ↑↑↑ TESTIMONIALS CAROUSEL ↑↑↑ */

/* ↓↓↓ TABLET 768px to 1366px ↓↓↓ */
@media (min-width: 768px) {
  .terms-and-conditions,
  .privacy-policy {
    padding: 24px 64px;
    font-size: 20px;
  }

  .test {
    padding: 0 10%;
  }

  .title {
    padding-left: 60px;
  }

  .header-container {
    flex-direction: row;
  }

  .header-discount {
    order: 2;
  }
  .header-discount #discount-img {
    padding-bottom: 0;
  }
  .header-discount img {
    width: 90%;
  }

  .header-message {
    order: 1;
    text-align: left;
    padding: 16px;
  }

  .section__four .review__carousel {
    width: 70%;
    padding: 48px;
    background-color: #ffffff;
  }

  .arrow-left {
    left: 8px;
  }

  .arrow-right {
    right: 8px;
  }

  .advertise-priceplans-container {
    display: inline-block;
    width: 100%;
    column-count: 2;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    padding: 0 10vw;
  }

  .card {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    margin: 48px auto;
  }

  .advertise-header {
    padding: 16px 16px 180px 60px;
  }
}

/* ↓↓↓ LAPTOP 1024px onwards ↓↓↓ */
@media (min-width: 1024px) {
  .advertise-priceplans-container {
    margin: -100px 0 0 0;
    padding: 0 80px;
  }

  .header-discount img {
    max-width: 70%;
  }

  .test {
    padding: 0 10%;
  }

  .testi-item {
    margin: 80px 0;
  }

  .swiper-slide-active .testi-item {
    transform: scale(1.3);
  }

  .testimonials-text {
    padding: 24px 16px;
  }

  .listing-carousel-button {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    line-height: 50px;
    color: #4bcd9d;
    background: white;
    box-shadow: 0px 3px 10px #58cca2;
    font-size: 24px;
  }

  .listing-carousel-button.listing-carousel-button-next {
    right: 15%;
    padding-right: 0;
    border-radius: 50%;
  }

  .listing-carousel-button.listing-carousel-button-prev {
    left: 15%;
    padding-left: 0;
    border-radius: 50%;
  }
}

/* ↓↓↓ DESKTOP 1366px onwards ↓↓↓ */
@media (min-width: 1366px) {
  .terms-and-conditions,
  .privacy-policy {
    padding: 48px 25vw;
    font-size: 24px;
  }

  .test {
    padding: 0 15%;
  }

  .swiper-slide-active .testi-item {
    transform: scale(1.28);
  }

  .listing-carousel-button.listing-carousel-button-next {
    right: 20%;
  }

  .listing-carousel-button.listing-carousel-button-prev {
    left: 20%;
  }

  #priceplan-title {
    display: none;
  }

  .advertise-priceplans-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    margin: -20vh 0 0 0;
    padding: 0 80px;
  }

  .card {
    display: flex;
    width: auto;
    max-width: 100%;
    box-shadow: none;
  }

  .card .priceplan-title {
    font-size: 18px;
  }

  .card .body-row {
    padding: 24px 12px;
    display: flex;
    flex-direction: unset;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    height: 40px;
  }

  .card .body-row p {
    margin-right: 0;
  }

  .no-mobile {
    display: flex !important;
  }

  #top-left-rounded {
    border-top-left-radius: 20px;
  }

  #bottom-left-rounded {
    border-bottom-left-radius: 20px;
  }

  #names-only .body-row {
    align-items: center;
    justify-content: left;
  }

  #names-only .card-icon,
  #names-only .divider {
    opacity: 0;
  }

  #names-only .priceplan-title {
    color: #034d76;
  }

  #names-only {
    flex: 4;
    display: flex;
  }

  #basic {
    flex: 1;
  }

  #pro {
    flex: 1;
  }

  #premium {
    flex: 1;
  }

  #elite {
    flex: 1;
  }

  #enterprise {
    flex: 1;
  }

  .body-row {
    align-items: center;
    justify-content: center;
  }

  .cell-text {
    display: none !important;
  }

  #names-only .card-footer {
    opacity: 0;
  }

  .advertise-header {
    height: 80vh;
    font-size: 20px;
    padding: 0 100px;
  }

  .header-title .title {
    text-align: left;
    font-size: larger;
  }

  .header-discount img {
    max-width: 60%;
  }

  .header-message {
    margin-top: 50px;
  }

  .section__four .review__carousel {
    width: 400px;
    overflow: hidden;
  }

  .underlay {
    width: 600px;
    height: 240px;
    margin: auto;
    position: absolute;
    top: 100px;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #58cca2;
    z-index: -1;
    border-radius: 24px;
  }

  .signup-btn {
    width: 95%;
    margin: 0 auto;
    padding: 8px;
    font-size: 14px;
    cursor: pointer;
  }
}

@media (min-width: 1600px) {
  .header-discount img {
    max-width: 60vh;
  }
}
<<<<<<< HEAD
=======

.section__nine__sales {
  /*display: flex;                  /* establish flex container */
  /*flex-direction: row;            /* default value; can be omitted */
  /*flex-wrap: nowrap;              /* default value; can be omitted */
  /*justify-content: space-between; /* switched from default (flex-start, see below) */
  /*background-color: lightyellow; */
}

.section__nine__sales {
  /*display: flex;                  /* establish flex container */
  /*flex-direction: row;            /* default value; can be omitted */
  /*flex-wrap: nowrap;              /* default value; can be omitted */
  /*justify-content: space-between; /* switched from default (flex-start, see below) */
  /*background-color: lightyellow; */
}

.section__nine__sales > div {
    width: 100px;
    height: 100px;
    border: 2px dashed red;
  }
