main {
  font-family: 'Inter', sans-serif;
}

p, h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 0;
}

main {
  margin-top: 90px;
}

.container {
  padding-left: 100px;
  padding-right: 100px;
}

.invisible {
  display: none !important;
  visibility: hidden !important;
  margin-top: 0 !important;
}

.hide_from_screen {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* BUTTON */
.button {
  display: inline-block;
  position: relative;
  background-color: #0073E6;
  border-radius: 9999px;
  color: #fff;
  padding: 8px 28px;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  text-decoration: none; 
}

.button:hover {
  background-color: #0052a3; 
}

.button_yellow {
  background-color: #FFC42A;
  color: #2B2B35;
}

.button_yellow:hover {
  background-color: #E5B129;
}

/* SWITCH  */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0A8F6E;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 100px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #0A8F6E;
}

input:focus + .slider {
  box-shadow: 0 0 2px #0A8F6E;
  border: 2px solid #04352a;
}

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

@media only screen and (max-width: 1024px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}


/* PRICING SECTION  */
.pricing {
  padding-top: 50px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing div {
  max-width: 1600px;
}

.pricing_head {
  text-align: center;
}

.pricing_head_header {
  font-weight: bold;
  font-size: 38px;
  padding-bottom: 20px;
}

.pricing_head_text_desktop {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing_head_text_1 {
  font-weight: 500;
  font-size: 14px;
  color: #0073E6;
}

.pricing_head_text_2 {
  color: #008161;
}

.pricing_head_text_3 {
  font-weight: 500;
  font-size: 14px;
  color: #636363;
}

.pricing_head_text_switch_1 {
  color: #636363;
}

.pricing_head_text_switch_2 {
  color: #0073E6;
}

.pricing_switch {
  padding: 0 10px;
}

.pricing_head_text_mobile {
  display: none;
  visibility: hidden;
}

.pricing_body {
  padding-top: 70px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pricing_card {
  background: #F6F6F6;
  width: calc(25% - 20px);
  margin: 0 10px;
  border-radius: 4px;
  padding: 20px 25px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
}

.pricing_card_popular {
  background: #162D5D;
  color: #ffffff;
  box-shadow: 0px 0px 10px 0px #0000004D;
  z-index: 10;
  position: relative;
}

.pricing_card_popular_box {
  background: #162D5D;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  z-index: initial;
  position: relative;
  margin-top: -20px;
}

.pricing_card_label {
  font-size: 14px;
  margin-top: -57px;
  padding: 10px 0;
}

.pricing_card_label_popular {
  font-size: 14px;
  margin-top: -34px;
  display: flex;
  justify-content: center;
  z-index: -1;
  position: relative;
}

.pricing_card_label_popular_text {
  background: #FFC42A;
  color: #2B2B35; 
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  text-align: center;
  padding: 10px 30px;
}

.pricing_card_box_left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  justify-content: space-between;
}

.pricing_card_header {
  font-weight: 500;
  font-size: 35px;
}

.pricing_card_icon {
  height: max-content;
  width: max-content;
}

.pricing_card_icon_box {
  height: 120px;
  display: flex;
  align-items: center;
}

.pricing_card_price_category {
  display: flex;
  flex-direction: column;
  height: 110px;
}

.pricing_card_price {
  text-align: center;
}

.pricing_card_price_currency {
  font-size: 30px;
}

.pricing_card_text_1 {
  padding: 5px 0 20px;
  text-align: center;
}

.pricing_card_box_right {
  font-size: 14px;
}

.pricing_card_text_2 {
  padding: 20px 0;
}

.pricing_card_line {
  border: 0.5px solid #B9B9B9;
  margin-bottom: 10px;
}

.pricing_card_text_3 {
  padding: 5px 0;
  font-weight: 500;
}

.pricing_card_text_4 {
  padding: 6px 0;
  display: flex;
  align-items: center;
}

.pricing_card_mark_arrow {
  padding-right: 8px;
  height: max-content;
  width: max-content;
}

.pricing_button_popular {
  margin-top: -4px;
}

@media only screen and (max-width: 1200px) {
  .pricing {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (max-width: 1042px) {
  .pricing_card_label_popular_text {
    padding: 10px 10px;
  }
}

@media only screen and (max-width: 1024px) {
  .pricing_card_header {
    font-size: 30px;
  }
}

@media only screen and (max-width: 940px) {
  .pricing_body {
    padding-top: 20px;
  }
  .pricing_card {
    width: calc(50% - 20px);
    margin: 25px 0;
  }

  .pricing_card_header {
    font-size: 35px;
  }

  .pricing_card_label_popular_text {
    padding: 10px 30px;
  }
}

@media only screen and (max-width: 768px) {
  .pricing {
    padding-left: 30px;
    padding-right: 30px;
  }

  .pricing_head_text_desktop {
    display: none;
    visibility: hidden;
  }

  .pricing_head_text_mobile {
    display: flex;
    visibility: visible;
    justify-content: center;
  }

  .pricing_switch_mobile {
    border: 1px solid #B9B9B9;
    padding: 2px;
    padding-right: 15px;
    border-radius: 4px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 541px) {
  .pricing_card_label_popular_text {
    padding: 10px 10px;
  }
}

@media only screen and (max-width: 480px) {
  .pricing_card {
    width: 100%;
  }

  .pricing_card_box_right {
    font-size: 14px;
  }

  .pricing_card_label_popular_text {
    padding: 10px 30px;
  }
}



/* FEATURES SECTION  */
.features  {
  display: flex;
  justify-content: center;
}

.features div {
  max-width: 1600px;
}

.features_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
  
.features_header {
  display: flex;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
  cursor: pointer;
  align-items: center;
}

.features_title {
  font-weight: bold;
  font-size: 28px;
  padding-right: 15px;
}

.features_toggle {
  height: max-content;
  width: max-content;
}

.features_body {
  display: none;
  visibility: hidden;
}

.features_body_visible {
  display: block;
  visibility: visible;
}

.features_table {
  border-collapse: collapse;
  margin-bottom: 50px;
}

.features_table_odd {
  background: #F6F6F6;
}

.features_table_header_empty {
  border-bottom: 1px solid #B9B9B9;
  width: 25%;
}

.features_table_header {
  border: 1px solid #B9B9B9;
  width: calc(75% / 4 );
  padding: 20px 0;
}

.features_table_header_heading {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
}

.features_table_header_text {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  padding: 8px 0;
}

.features_table_title {
  padding: 20px 0 13px;
  font-weight: 600;
  font-size: 20px;
  text-align: left;
}

td {
  padding: 8px 15px;
  font-size: 16px;
  color: #000000;
  text-align: center;
  vertical-align: middle;
}

.features_align_left {
  text-align: left;
  padding-left: 30px;
}

.features_mark_arrow {
  width: max-content;
  height: max-content;
}

@media only screen and (max-width: 1100px) {
  .features_button {
    padding: 6px 16px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .features {
    display: none;
    visibility: hidden;
  }
}

/* CARD SECTION  */
.card {
  text-align: center;
  padding-bottom: 50px;
}

.card_image {
  height: max-content;
  width: max-content;
  margin: 0 20px;
}

@media only screen and (max-width: 768px) {
  .card {
    padding-top: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .card {
    padding-top: unset;
  }
}

/* PARTNER SECTION  */

.partner {
  display: flex;
  justify-content: center; 
  background: #F6F6F6;
  display: flex;
  justify-content: center; 
}

.partner_layout_container {
  margin: 68px 16px 68px 16px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  text-align: center; 
}

.partner_caption {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px; 
}

.partner_image_small {
  display: none; 
}

@media only screen and (max-width: 768px) {
  .partner_image_small {
    display: inherit; 
  } 

  .partner_image {
    display: none; 
  } 
}

@media only screen and (max-width: 480px) {
  .partner_layout_container {
    width: 100%; 
  } 
}

/* LAUNCH SECTION */
.launch {
  background: #162D5D;
  color: white;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.launch_top_box {
  padding-bottom: 60px;
}

.launch_image_1 {
  width: max-content;
  height: max-content;
}

.launch_heading_1 {
  padding-top: 30px;
  font-weight: 500;
  font-size: 38px;
}

.launch_text_1 {
  font-size: 18px;
}

.launch_bottom_box {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.launch_info_box {
  margin: 0 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.launch_info_box:first-of-type {
  margin-left: 75px
}

.launch_info_box:last-of-type {
  margin-right: 75px
}

.launch_image_2 {
  height: 60px;
  width: 60px;
  margin-bottom: 10px;
}

.launch_heading_2 {
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 10px;
}

.launch_text_2 {
  font-size: 14px;
  max-width: 75%;
}

@media only screen and (max-width: 1211px) {
  .launch_text_2 {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .launch_info_box {
    margin: 0 20px;
  }

  .launch_info_box:first-of-type {
    margin-left: 50px
  }

  .launch_info_box:last-of-type {
    margin-right: 50px
  }
}

@media only screen and (max-width: 768px) {
  .launch {
    display: none;
    visibility: hidden;
  }
}

/* PLAN SECTION */
.plan {
  display: flex;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.plan div {
  max-width: 1600px;
}

.plan_box_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.plan_box {
  display: flex;
  width: calc(50% - 30px);
}

.plan_left {
  margin-right: 25px;
}

.plan_image {
  height: max-content;
  width: max-content;
}

.plan_heading {
  font-weight: 600;
  font-size: 18px;
}

.plan_text {
  font-size: 18px;
  padding: 20px 0;
}

@media only screen and (max-width: 1024px) {
  .plan_box {
    width: calc(50% - 15px);
  }
}

@media only screen and (max-width: 768px) {
  .plan {
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .plan_box {
    width: 100%;
  }

  .plan_box:not(:last-of-type) {
    padding-bottom: 60px;
  }

  .plan_left {
    display: none;
    visibility: hidden;
  }
}

/* TESTIMONY SECTION */

.testimony {
  display: flex;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.testimony_gray {
  background: #F6F6F6;
}

.testimony_box_left {
  width: 250px;
  position: relative;
}

.testimony_box_right {
  width: calc(100% - 250px);
  position: relative;
  padding-left: 30px;
  max-width: 1350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimony_blue_icon {
  position: absolute;
  top: 15px;
  left: 0px;
}

.testimony_green_icon {
  position: absolute;
  top: 220px;
  right: 20px;
}

.testimony_yellow_icon {
  position: absolute;
  bottom: 25px;
  right: 8px;
}

.testimony_image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 30px;
}

.testimony_text--1 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  padding-bottom: 20px;
}

.testimony_text--2 {
  font-size: 20px;
  padding-bottom: 20px;
  color: #2B2B35;
}

.testimony_link--1 {
  font-weight: normal;
  font-size: 16px;
  text-decoration-line: underline;
  color: #2B2B35;
}

.testimony_link--2 {
  display: none;
  visibility: hidden;
}

.testimony_button {
  display: none;
  visibility: hidden;
}

@media only screen and (max-width: 1200px) {
  .testimony_yellow_icon {
    position: absolute;
    bottom: -30px;
    right: -30px;
  }
}

@media only screen and (max-width: 768px) {
  .testimony {
    display: none;
    visibility: hidden;
  }
}
