@font-face {
  font-family: "Afek";
  src: url("../fonts/afek/webfont_files/afek-black-aaa.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Afek";
  src: url("../fonts/afek/webfont_files/afek-bold-aaa.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Afek";
  src: url("../fonts/afek/webfont_files/afek-light-aaa.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Afek";
  src: url("../fonts/afek/webfont_files/afek-medium-aaa.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Afek";
  src: url("../fonts/afek/webfont_files/afek-regular-aaa.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
html {
    width: 100%;
    overscroll-behavior: contain;
}
body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Afek", sans-serif;
  font-weight: 300;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  color: #1e1e3e;
  /*zoom:0.8;*/
}

/*@media (max-width: 600px) {
    body{
        zoom:1;
    }
}*/

.no-scroll {
  overflow: hidden;
  height: 100%;
}

ul[class],
ol[class] {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
    color: #334155;
    text-decoration: none;
}

a.anchor-color {
    color: var(--company-main-color);
    text-decoration:none;
}
/* container start  */
._container {
    /* display:flex;noni*/
    max-width: 1450px;
    width: 100%;
    padding: 0px 20px;
    margin: 0 auto;
}

@media (max-width: 1640px) {
  ._container {
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media (max-width: 1400px) {
  ._container {
    max-width: 1100px;
    margin: 0 auto;
  }
}
@media (max-width: 1200px) {
  ._container {
    max-width: 1100px;
    margin: 0 auto;
  }
}
@media (max-width: 900px) {
  ._container {
    max-width: unset;
    margin: 0px;
    padding: 0px 20px;
  }
}
/* container end  */

/* base button styles start */
.base_button {
    font-weight: bold;
    border-radius: 45px;
    height: 50px;
    max-width: 200px;
    width: 100%;
    border: unset;
    padding: 0px 10px;
    flex: 1 1 auto;
    cursor: pointer;
    transition: 0.4s;
    color: #000000;/*var(--company-main-color);*/
}
.base_button:hover {
  scale: 1.01;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.base_button-color {
    background-color: var(--company-main-color);
    /*#f2045d;*/
    color: white;
    /*text-decoration:none;
  text-align:center;
  vertical-align:middle;*/
}
@media (max-width: 600px) {
  .base_button {
    max-width: unset;
  }
}
/* base button styles end */

/* base styles start */
.bg_pink {
    background-color: var(--company-main-color);
    /*#f2045d;*/
}
.ft-color_pink {
    color: var(--company-main-color);
    /*#f2045d;*/
}
.ft-color_white {
  color: white;
}
.font-size_vB {
  font-size: 52px;
}

.flex {
  display: flex;
}
.flex_gap_16 {
  display: flex;
  gap: 16px;
}

/* dropdown start */
.dropdown {
  position: relative;
  display: inline-block;
}

.label_dropdown {
  cursor: pointer;
}
.body_dropdown {
  /* display: none; */
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0px 4px 7.3px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.5s ease, max-height 0.5s ease;
  transform: translateY(-10px);
  z-index: 10;
  max-height: 0px;
  overflow: hidden;
  box-sizing: border-box;
  width: 195px !important;
}
.body_dropdown.show {
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
}

.body_dropdown .body_dropdown_item {
  /* border-right: 5px solid #f2045d; */
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.body_dropdown .body_dropdown_item p {
  font-weight: 500;
  color: #334155;
}

    .body_dropdown p::after {
        content: "";
        height: 2px;
        right: 0;
        bottom: 0;
        width: 0px;
        position: absolute;
        transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        background-color: var(--company-secondary-color);        
    }
.body_dropdown .body_dropdown_item:hover p::after {
  width: 100%;
}

/* dropdown end */

/* autocomplete start */
.autocomplete {
  position: relative;
}
.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-height: 150px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index:10;
}
.autocomplete-list.show {
  opacity: 1;
  transform: translateY(0);
}
/* WebKit (Chrome, Safari) */
.autocomplete-list::-webkit-scrollbar {
  width: 8px;
}
.autocomplete-list::-webkit-scrollbar-button {
  display: none;
}

.autocomplete-list::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.autocomplete-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.autocomplete-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Firefox */
.autocomplete-list {
  scrollbar-width: thin;
  scrollbar-color: #888 #f0f0f0;
}
.autocomplete-item {
  padding: 10px;
  cursor: pointer;
}

.autocomplete-item:hover {
  background-color: #f0f0f0;
}
/* autocomplete end */

._divider {
  width: 100%;
  border-bottom: 0.25px solid #1e1e3e;
}

/* drawer start */
.drawer {
  position: fixed;
  top: 0;
  right: calc(-100%);
  width: 100%;
  height: 100%;
  background-color: white;
  transition: right 0.3s ease;
  /* padding: 20px; */
  z-index: 1000;
  overflow: auto;
}
.drawer.open {
  right: 0;
}
.drawer-header {
  height: 66px;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.drawer-header button {
  background-color: transparent;
  border: unset;
  padding: 0px;
  cursor: pointer;
}
.drawer-main-content {
  padding: 0px 20px;
}
.drawer-main-content ._divider {
  margin-top: 16px;
  border-color: #a7a7a7cc;
}
.auth_info_item {
  display: flex;
  gap: 8px;
  height: 32px;
  align-items: center;
}

.drawer-main-content .drawer-main-content-options h3 {
    margin-top: 16px;
    font-weight: 400;
    font-size: 20px;
    line-height: 35px;
    color: var(--company-main-color);
    /*#f2045d;*/
    margin-bottom: 8px;
}
.drawer-main-content-options-option {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.drawer-main-content-options-option p {
  font-weight: 400;
  font-size: 18px;
  color: #334155;
}
.drawer-main-content-options-option img {
  width: 24px;
  height: 24px;
}
.auth_info_item p {
  font-weight: 500;
}
.drawer-main-content-options-show-more-container {
   
    opacity: 0;
    height: 0;
    z-index: -1;
    position: relative;
    transition: height 0.6s ease-out;
}
    .drawer-main-content-options-show-more-container.visible {
       
        height: 365px;
        opacity: 1;
        z-index: unset;
        transition: height 0.8s ease-in;
    }
.drawer-main-content-options-show-more-container:not(.visible) {
  height: 0;
  opacity: 0;
}
.drawer-main-content-options-show-more-container.visible
  + .drawer-main-content-options-show_more
  img {
  transform: rotate(-180deg);
}

.drawer-main-content-options-show_more {
  display: flex;
  height: 52px;
  align-items: center;
}
.drawer-main-content-options-show_more img {
  transition: transform 0.4s ease;
  height: 24px;
  width: 24px;
}
.drawer-main-content-options-show_more p {
  font-weight: 500;
  color: #334155;
}
.drawer-main-content .base_button {
  margin-top: 16px;
  max-width: unset;
}
.drawer-footer {
  margin-top: 16px;
  background-color: #f7edc9;
  padding: 16px 20px 20px;
}
.drawer-footer .footer-info {
  margin-top: 32px;
  background-color: unset;
  padding: 0px;
}
.drawer-footer .drawer-accordion {
  border-bottom: 1px solid #1e1e3e33;
}
.drawer-footer .footer_poweredBy {
  border-color: #1e1e3e33;
}
.drawer-footer .drawer-accordion-header {
  height: 50px;
  padding: 0px;
  align-items: center;
  display: flex;
}
.drawer-footer .drawer-accordion-content.open {
  padding: 0px 8px;
}
    .drawer-footer .drawer-accordion-content h3 {
        font-weight: 600;
        color: #1e1e3e ;/*#334155*/
        font-size: 16px;
    }
.drawer-footer .drawer-accordion-content .footer_base_list {
  margin-bottom: 10px;
}
.drawer-footer .drawer-accordion-content .footer_base_list img {
  width: 16px;
  height: 16px;
}
.drawer-footer .drawer-accordion-header-title {
  font-weight: 700;
  font-size: 16px;
  color: #1e1e3e;
}
.drawer-footer .drawer-accordion-content-just-item {
  height: 42px;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #334155;
}

/* drawer end */

/* accordion start */

.drawer-accordion-header {
  padding: 10px 0px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  transition: 0.3s;
}
.drawer-accordion-header .arrow {
  width: 16px;
  transition: 0.4s;
}
.drawer-accordion-header.open .arrow {
  transform: rotate(90deg);
}
.drawer-accordion-content .auth_info_item {
  height: 50px;
}
.drawer-accordion-content {
  will-change: opacity, max-height, padding;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0px 8px;
  transition: opacity 0.7s ease-out, max-height 0.6s ease-out;
  display: flex;
  flex-direction: column;
}

.drawer-accordion-content.open {
  opacity: 1;
  transition: opacity 0.3s ease-in, max-height 0.8s ease-in;
  max-height: 400px;
}

/* accordion end */
@media (max-width: 600px) {
  .font-size_vB {
    font-size: 32px;
  }
}

/* base styles end */

/* header start */
header {
  display: flex;
  justify-content: space-between;
  height: 146px;
  align-items: center;
  gap: 10px;
  position: relative;
}
.header_sponsors-logos {
  display: flex;
  gap: 30px;
  width: 35%;
}
.header_sponsors-logo {
  max-height: 50px;
}
.header_search_mobile {
  display: none;
}
/*header input,
header + .autocomplete input {
  height: 50px;
  width: 100%;
  background-image: url("../images/search.png");
  background-repeat: no-repeat;
  background-position: left 17px center;
  background-size: 17px;
  border: unset;
  border-radius: 45px;
  box-shadow: 0px 4px 7.3px rgba(0, 0, 0, 0.15);
  padding: 0px 24px 0px 17px;
}*/
header + .autocomplete {
    position: relative;
    width: 100%;
}

header input,
header + .autocomplete input {
    height: 50px;
    width: 100%;
    border: unset;
    border-radius: 45px;
    box-shadow: 0px 4px 7.3px rgba(0, 0, 0, 0.15);
    padding: 0px 24px 0px 45px; /* Adjust left padding to make room for the image */
}
.search-icon {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%); /* Center the image vertically */
    width: 17px;
    height: 17px; /* Set image size */
    pointer-events: none; /* Make sure the image doesn’t interfere with input clicks */
}

   header .autocomplete, header + .autocomplete {
  max-width: 400px;
  width: 100%;
}
header input:focus-visible {
  border: unset;
  outline: none;
}
header + .autocomplete input:focus-visible {
  outline: none;
}
header input,
header input::placeholder,
header + .autocomplete input,
header + .autocomplete input::placeholder {
    font-weight: 400;
    font-size: 20px;
    color: var(--company-main-color);
    /*#f2045d;*/
}
.header_info_conrainer {
  width: 35%;
  display: flex;
  justify-content: end;
  gap: 16px;
}
.header_auth_dropdown {
  display: flex;
  align-items: center;
}
.header_auth_label {
    width: max-content;
    align-items: center;
    display: flex;
    gap: 7px;
    color: var(--company-main-color);
    /*#f2045d;*/
    font-weight: bold;
}
.header_info_conrainer .base_button {
  width: 200px;
}

.header_mobile_menu {
  display: none;
}
header + .autocomplete {
  display: none;
}

@media (max-width: 1400px) {
  header input,
  header input::placeholder {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  header .autocomplete {
    max-width: 250px;
  }
}

@media (max-width: 900px) {
  header {
    height: 75px;
    z-index: 10;
    background-color: white;
  }
  .header_mobile_menu {
    display: block;
  }
  header .autocomplete {
    display: none;
  }
  header + .autocomplete {
    display: flex;
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: unset;
    z-index: 1;
    transition: top 1s ease;
  }
    header + .autocomplete input {
        background-image: none;
        border-radius: unset;
        border-top: 2px solid var(--company-main-color);
        /*#f2045d;*/
    }
    header + .autocomplete .autocomplete-list {
        border-radius: unset;
        border: unset;
        border-top: 2px solid var(--company-main-color);
        /*#f2045d;*/
    }
  header + .autocomplete.open {
    top: 75px;
  }
  header .header_info_conrainer {
    display: none;
  }
  .header_sponsors-logos {
    width: unset;
    gap: 18px;
  }
  .header_sponsors-logo {
    max-height: unset;
    height: 28px;
  }
  .header_sponsors-logo img {
    height: 100%;
  }
  .header_mobile_menu #openDrawerBtn {
    width: 30px;
    cursor: pointer;
  }
  .header_search_mobile {
    display: block;
    cursor: pointer;
    width:35px;
    height:35px;
  }
}

/* header end */

/* main content start */

.main_content_container {
}

/* ---categories section start */

.categories_section {
    background-color: var(--company-main-color);
    /*#f2045d;*/
    height: 178px;
    width: 100%;
    padding: 0px 60px;
    display: flex;
    align-items: center;
}
.categories_section nav {
  width: 100%;
}
.categories_list {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
}
.categories_list li p {
  position: relative;
}
    .categories_list li p::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0px;
        width: 100%;
        height: 1px;
        background-color: var(--company-secondary-color);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s;
    }

.categories_list li:hover p::after {
  transform: scaleX(1);
}

.categories_list_item_container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  text-decoration: unset;
  height: 100%;
  max-width:200px;
}

.categories_list_item_container div {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  overflow: hidden;
}
.categories_list_item_container div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categories_list_item_container p {
  color: white;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1600px) {
  .categories_section {
    padding: 0px 20px;
    padding-top:10px;
  }
}

@media (max-width: 1200px) {
  .categories_list::-webkit-scrollbar {
    display: none;
  }
  .categories_list {
    overflow-x: auto;
    gap: 20px;
  }
    .categories_list_item_container {
        width: max-content;
        max-width: 165px;
    }
}

@media (max-width: 600px) {
  .categories_section {
    height: 100px;
  }
  .categories_list_item_container p {
    font-weight: 400;
    font-size: 14px;
  }
  .categories_list_item_container {
    gap: 0px;
  }
  .categories_list_item_container div {
    max-height: 45px;
    min-height: unset;
    max-width: 45px;
  }
}
/* ---categories section end */

/* ---hero slider start */
.hero_slider {
  position: relative;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}
.hero_slider .glide__bullets .glide__bullet {
  border: 1px solid black;
  height: 15px;
  width: 15px;
}
.hero_slider .glide__bullets {
  bottom: 78px;
}
.hero_slider .glide__bullets .glide__bullet.glide__bullet--active {
    background-color: var(--company-main-color);
    /*#f2045d;*/
}
.hero-slider-img {
  height: 500px;
  object-fit: cover;
}

.hero-search {
  position: absolute;
  bottom: -60px;
  width: 100%;
}
.hero-search_container {
    background-color: var(--company-secondary-color);
    /* max-width: 1410px; */
    /* margin: 0 auto; */
    border-radius: 20px;
    height: 120px;
    /* padding: 0px 25px; */
    display: flex;
    gap: 16px;
    align-items: center;
}
.hero-search_container .autocomplete {
  flex: 1 0 auto;
}
.hero-search_container input {
  height: 50px;
  width: 100%;
  padding: 0px 32px;
  font-weight: 400;
  font-size: 20px;
  color: black;
  border-radius: 45px;
  border: 1px solid black;
  background-color: inherit;
}
.hero-search_container input:focus-visible {
  outline: unset;
}
.hero-search_container input::placeholder {
  font-weight: 400;
  color: black;
  font-size: 20px;
}

@media (max-width: 900px) {
  .hero-search_container input {
    padding: 0px 16px;
  }
  .hero_slider .glide__bullets {
    bottom: 16px;
  }
  .hero-slider-img {
    height: 200px;
  }
  .hero-search {
    bottom: unset;
  }
  .hero-search_container {
    border-radius: unset;
    height: 100px;
    gap: 9px;
    padding: 0px 20px;
  }
  .hero-search_container .autocomplete {
    flex: 1 1 auto;
  }
  .hero-search_container .base_button {
    max-width: 131px;
  }
}
/* ---hero slider end */

/* main-catalog start */
.main-catalog {
  padding: 160px 0px 100px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  background-color: #f1f6ff;
}
.catalog_one_section ._divider {
  flex: 1 1 auto;
  width: auto;
}
/* main-catalog end */

/* ---catalog start */
.catalog {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.catalog_one_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalog_one_section_title-container {
  display: flex;
  gap: 10px;
}
.catalog_one_section_title-container-name {
    color: var(--company-main-color);
    /*#f2045d;*/
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
}
.catalog_one_section_title-container-link_box {
  display: flex;
  align-items: end;
}
.catalog_one_section_title-container-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.4s;
    text-decoration: none;
    color: #1e1e3e;
}
.catalog_one_section_title-container-link svg path {
  stroke: #1e1e3e;
  transition: 0.4s;
}
.catalog_one_section_title-container-link:hover {
    /*color: #f2045d;*/
    color: var(--company-main-color);
}
    .catalog_one_section_title-container-link:hover svg path {
        stroke: var(--company-main-color);
        /*#f2045d;*/
    }
.catalog ._divider {
  flex: 1 1 auto;
  width: auto;
}
.catalog_one_section_title-container-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -10px;
    width: calc(100% + 10px);
    height: 1px;
    background-color: var(--company-main-color);
    /*#f2045d;*/
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s;
}

.catalog_one_section_title-container-link:hover::after {
  transform: scaleX(1);
}

.catalog_one_product {
  cursor: pointer;
  overflow: hidden;
  border-radius: 25px;
  width: 100%;
  background-color: white;
  height: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.catalog_one_section .glide__slides {
  padding: 10px;
}
.catalog_one_product-img_box {
  height: 127px;
  width: 100%;
}
.catalog_one_product-img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog_one_product_main-info {
  padding: 5px 18px 5px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  height:135px;
}

.catalog_one_product_name-shop {
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
}

.catalog_one_product_name-info {
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    /*max-height: 66px;
    min-height: 46px;*/
    height:66px;
    /*white-space: nowrap;*/
    overflow: hidden;
    text-overflow: ellipsis;
    
}

.catalog_one_product_name-price-box {
    display: flex;
    gap: 1px;
    font-weight: 300;
    line-height: 21px;
    flex-direction: column;
}
.catalog_one_product_name-price-current {
  font-size: 18px;
}
.catalog_one_product_name-price-previous {
  text-decoration: line-through;
  font-size: 15px;
}
.catalog-slider {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 20px;
}
.catalog-slider .glide__arrow {
  border: unset;
  padding: 0px;
  box-shadow: unset;
  opacity: unset;
  transition: 0.4s;
}
.catalog-slider .glide__arrow--left {
  left: -80px;
}
.catalog-slider .glide__arrow--right {
  right: -80px;
}
    .catalog-slider .glide__arrow:hover svg {
        fill: var(--company-main-color);
        /*#f2045d;*/
    }

/* ----- info block start */
.catalog_info_blog {
  display: flex;
  /*height: 255px;*/
  border-radius: 25px;
  overflow: hidden;
}
.catalog_info_blog .banner_desktop {
  width: 100%;
  object-fit: cover;
}
/* .catalog_info_blog-text-container{
  background-color: var(--company-secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40%;
}
.catalog_info_blog-text-container p {
  font-size: 52px;
  font-weight: 700;
  text-align: right;
  line-height: 1em;
}
.catalog_info_blog-image-container{
  width: 60%;
}
.catalog_info_blog-image-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

@media (max-width: 1640px) {
  .catalog-slider {
    max-width: 1220px;
  }
}

@media (max-width: 1400px) {
  .catalog-slider {
    max-width: 1120px;
  }
  .catalog-slider .glide__arrow--left {
    left: -60px;
  }
  .catalog-slider .glide__arrow--right {
    right: -60px;
  }
}

@media (max-width: 1200px) {
  .glide__arrows {
    display: none;
  }
}

@media (max-width: 980px) {
  .catalog ._divider {
    display: none;
  }
  .catalog {
    gap: 50px;
  }
  .catalog-slider {
    max-width: unset;
  }
  .catalog_info_blog .banner_desktop {
    display: none;
  }
  .catalog_info_blog .banner_mobile {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .catalog_one_section_title-container {
    justify-content: space-between;
  }
  .main-catalog {
    gap: 50px;
  }
  .catalog_one_section_title-container-name {
    font-size: 24px;
  }
  .catalog_one_section_title-container-link {
    font-size: 14px;
    width:74px;
  }
  .main-catalog ._divider {
    display: none;
  }
  .catalog_one_section {
    gap: 20px;
  }
  .catalog_one_section .glide__slides {
    padding: 10px 0px 10px;
  }
}

@media (max-width: 600px) {
  .catalog-slider {
    max-width: unset;
    margin: unset;
    padding: 0px;
  }
  .catalog_info_blog .banner_mobile {
    object-fit: unset;
  }
    .catalog_one_section .glide__slides {
        padding: 10px 20px 10px;
        /*noni iphone problem with scrolling when opened in webview*/
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Enables smooth scrolling for iOS */
    }
}

/* ----- info block end */

/* ---catalog end */

/* ---info for users start */
.infor_for_users {
  margin-top: 127px;
}
.infor_for_users_text {
    margin-top: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    text-align: center;
    justify-content: center;
}

.infor_for_users_text p {
  font-size: 14px;
  font-weight: 300;
}
@media (max-width: 900px) {
  .infor_for_users {
    margin-top: 50px;
  }
  .infor_for_users ._divider {
    display: none;
  }
  .infor_for_users_text {
    height: unset;
    margin-top: unset;
  }
  .infor_for_users_text p {
    text-align: center;
    font-weight: 300;
  }
}
/* ---info for users end */

/* main content end */

/* footer start */

footer {
    background-color: var(--company-secondary-color);
    padding: 73px 0px 0px;
    margin-top: 10px;
}
.footer_container {
  display: grid;
  grid-template-columns: repeat(4, 0.75fr) 1fr;
  gap: 60px;
}

.footer-column h3 {
  font-weight: 400;
  font-size: 25px;
  line-height: 35px;
}
.footer_base_list {
  margin-top: 26px !important;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.footer_base_list li a {
  font-weight: 300;
  font-size: 16px;
  color: #1e1e3e;
  text-decoration: unset;
}
.footer_base_list.contacts li a {
  display: flex;
  gap: 13px;
}
.footer-column nav ul li a:hover {
  text-decoration: underline;
}

footer .footer_social {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 30px !important;
}

.footer_form {
  margin-top: 67px;
}

.footer_form p {
  font-weight: 400;
  font-size: 25px;
  line-height: 35px;
}
.footer_form .footer_input_text {
  border-radius: 10px;
  border: 1px solid #1e1e3e;
  font-weight: 400;
  font-size: 18px;
  padding: 0px 14px;
  height: 50px;
  margin-top: 10px;
  width: 100%;
}
.footer_form .footer_input_text:focus-visible {
  outline: unset;
}
    .footer_form button {
        margin-top: 15px;
        border-radius: 10px;
        border: unset;
        background-color: var(--company-main-color);
        /*#f2045d;*/
        padding: 0px 14px;
        height: 50px;
        display: flex;
        font-weight: 700;
        font-size: 18px;
        width: 100%;
        align-items: center;
        color: white;
        justify-content: space-between;
        cursor: pointer;
    }
.footer_form button:hover {
  scale: 1.01;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.footer_form button p {
  font-weight: 700;
  font-size: 18px;
}
.footer_form .footer_input_text::placeholder {
  font-weight: 400;
  font-size: 18px;
  color: #1e1e3e;
}
/* custom checkbox start */
.footer_checkbox-container {
  margin-top: 20px;
}
.custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  /* width: 100%; */
  gap: 7px;
}

.custom-checkbox input {
  display: none;
}
.footer_checkbox-container .footer_people {
  display: none;
}
.checkmark {
    width: 24px;
    height: 24px;
    background-color: #f0f0f0;
    border-radius: 50%;
    position: relative;
    border: 2px solid var(--company-main-color);
    /*#f2045d;*/
    transition: background-color 0.3s;
}

/* .custom-checkbox input:checked + .checkmark {
  background-color: #f2045d; 
} */

.custom-checkbox input:checked + .checkmark::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: var(--company-main-color);
    /*#f2045d;*/
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.checkbox-label {
  font-weight: 300;
  font-size: 15px;
}

.footer-info {
  height: 113px;
  background-color: white;
  margin-top: 65px;
}
.footer-info_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.footer_sponsors {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer_people {
  position: absolute;
  right: 45px;
}
.footer_social_mobile {
  display: none;
}

.footer_poweredBy {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;    
    
    margin-top: 20px;
}

@media (max-width: 1600px) {
  .footer_form p,
  .footer-column h3 {
    font-size: 20px;
  }

  .footer_form button p {
    font-size: 14px;
  }
  .footer_form .footer_input_text,
  .footer_form .footer_input_text::placeholder {
    font-size: 14px;
  }
  .footer_form .checkbox-label {
    font-size: 13px;
  }
}

@media (max-width: 1400px) {
  .footer_container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
  }
  .footer_social_mobile {
    display: block;
  }
  .footer_social_desktop {
    display: none;
  }
  .footer_form {
    margin-top: unset;
  }
}

@media (max-width: 1200px) {
  .footer_container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  footer {
    margin-top: 50px;
    padding: 35px 0px 0px;
  }
  .footer_container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer_container > :nth-child(3),
  .footer_container > :nth-child(4),
  .footer_container > :nth-child(5),
  .footer_container > :nth-child(6) {
    grid-column: span 2;
  }
  .footer_form {
    margin-top: 5px;
  }
  .footer_form p {
    font-size: 16px;
    font-weight: 700;
  }
  .footer_base_list_mobile {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer_base_list {
    margin-top: 5px !important;
  }
  .footer-column h3 {
    font-weight: 700;
    font-size: 16px;
  }
  .footer_base_list.contacts li a {
    gap: 5px;
  }
  .footer_base_list.contacts li з {
    font-size: 13px;
  }
  footer .footer_social {
    gap: 20px;
    margin-top: 10px !important;
  }

  .footer_base_list_mobile li {
    width: 45%;
  }

  .footer_base_list li a {
    font-size: 14px;
  }
  .footer-info_container .footer_people {
    display: none;
  }
  .footer_people {
    position: relative;
    right: unset;
  }
  .footer_checkbox-container {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
  }
  .footer_checkbox-container .footer_people {
    width: 37px;
  }
  .footer-info_container {
    flex-direction: column;
  }
  .footer-info {
    height: unset;
    padding: 26px 0px 27px;
  }
  .footer_poweredBy {
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: black;
    width: 100%;
    margin-top: 20px;
  }
  .footer_form button p {
    font-size: 14px;
  }
  .footer_form .footer_input_text,
  .footer_form .footer_input_text::placeholder {
    font-size: 14px;
  }
  .footer_sponsors img {
    width: 100%;
    height: 100%;
    max-width: unset;
  }
}
/* custom checkbox end */
/* footer end */

/* product page start */

/* ---breadcrumbs start */
.breadCrumbs {
  height: 107px;
  display: flex;
  align-items: center;
}
.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0px;
  margin: 0;
  gap: 5px;
  align-items: center;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
}
.breadcrumb-item a {
  font-weight: 300;
  font-size: 20px;
  text-decoration: none;
  color: #1e1e3e;
  line-height: 16px;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active a {
    color: var(--company-main-color);
    /*#f2045d;*/
    pointer-events: none;
}

@media (max-width: 900px) {
  .breadCrumbs {
    height: 50px;
  }
  .breadcrumb-item a {
    font-size: 16px;
  }
}
/* ---breadcrumbs end */

/* --- main info product start */
.main_info_product {
  background-color: #f1f6ff;
  padding: 55px 0px;
}
.main_info_product ._container {
  gap: 40px;
  display: flex;
}
.main_info_product .main_info_product-img {
  /*max-width: 647px;
  width: 100%;*/
  /*height: 489px;*/
  max-height: 520px;
  max-width: 520px;
  overflow: hidden;
  border-radius: 25px;
}
.main_info_product .main_info_product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_info_product-content {
  padding: 46px 0px;
  max-width: 600px;
}
.main_info_product-content_explanation {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main_info_product-content .main_info_product-content-name_store {
  line-height: 20px;
  font-weight: 400;
  font-size: 20px;
}
.main_info_product-content-advantage p {
  font-weight: 700;
  font-size: 26px;
  line-height: 30px;
}
.main_info_product-content .description {
/*    font-size: 20px;
    font-weight: 400;
    line-height: 24px;*/
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}
.main_info_product-content-price-box {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}
.main_info_product-content-price-box p {
  line-height: 20px;
  font-weight: 400;
}
.main_info_product-content-price-box
  .main_info_product-contente-price-previous {
  font-size: 28px;
  font-weight: 300;
  /* text-decoration: line-through; */
  text-decoration-line: line-through;
}
.main_info_product-content-price-box .main_info_product-content-price-current {
  font-size: 35px;
}
.main_info_product-content-count-box {
  margin-top: 35px;
  display: flex;
  height: 50px;
}
.main_info_product-content-count-box button {
  background-color: #f1f6ff;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-top: 2px solid #1e1e3e;
  border-bottom: 2px solid #1e1e3e;
  transition: 0.5s;
}
    .main_info_product-content-count-box button:hover svg path {
        stroke: var(--company-main-color);
        /*#f2045d;*/
    }
.main_info_product-content-count-box #increase {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-left: unset;
  border-right: 2px solid #1e1e3e;
}
.main_info_product-content-count-box #decrease {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-right: unset;
  border-left: 2px solid #1e1e3e;
}
.main_info_product-content-count-box input {
  text-align: center;
  width: 60px;
  border: 2px solid #1e1e3e;
  background-color: #f1f6ff;
  font-weight: 400;
  font-size: 24px;
}

.main_info_product .base_button {
  margin-top: 25px;
  max-width: 200px;
}

@media (max-width: 900px) {
  .main_info_product {
    padding: 35px 0px;
  }
  .main_info_product ._container {
    flex-direction: column;
    gap: 25px;
  }
  .main_info_product .main_info_product-img {
    max-width: unset;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 25px;
  }
  .main_info_product-content {
    padding: 0px;
    max-width: unset;
  }
  .main_info_product-content .main_info_product-content-name_store {
    font-size: 18px;
  }
  .main_info_product-content-advantage p {
    font-size: 32px;
  }
  .main_info_product-content .description {
    font-size: 18px;
  }
    .price_count_container {
        display: flex;
        justify-content: space-between;
        gap: 5px;
        align-items: center;
        margin-top: 50px;
        flex-direction: column;
    }
  .price_count_container .main_info_product-content-price-box {
    margin-top: 0px;
  }
  .price_count_container .main_info_product-content-count-box {
    margin-top: 0px;
  }
  .main_info_product-content-price-box {
    gap: 8px;
  }
  .main_info_product-content-price-box
    .main_info_product-contente-price-previous {
    font-size: 18px;
  }
  .main_info_product-content-price-box
    .main_info_product-content-price-current {
    font-size: 24px;
  }
  .main_info_product-content-count-box button {
    width: 53px;
  }
  .main_info_product .base_button {
    max-width: unset;
    font-size: 20px;
    font-weight: 400;
  }
}
/* - - - -- tabs start */

.tabs_container {
  margin-top: 50px;
  display: flex;
  gap: 16px;
  max-width: 870px;
  overflow: hidden;
  flex-direction: column;
}
.tabs {
  display: flex;
  position: relative;
}

.tab-button {
  background-color: white;
  border: unset;
  max-width: 290px;
  width: 100%;
  flex: "1 1 auto";
  height: 52px;
  font-size: 18px;
  font-weight: 400;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  border-bottom: 2px solid #1e1e3e8c;
}
.tab-button:hover {
  font-weight: 600;
}
.tab-button.active {
  font-weight: 700;
}

.tab-button.active {
  font-weight: 700;
}

.tab-content {
  min-height: 120px;
}
.tab-content .tab {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.tab {
  display: none;
}
.indicator {
    position: absolute;
    height: 2px;
    background-color: var(--company-main-color);
    /*#f2045d;*/
    bottom: 0;
    left: 0;
    transition: left 0.3s ease, width 0.3s ease;
    width: 100%;
}
.information-tabs-accordion .accordion_container {
  display: none;
}
.product-accordion .drawer-accordion-header {
  height: 50px;
  padding: 0px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #1e1e3e33;
}
.product-accordion .drawer-accordion-header.open {
  border-bottom: unset;
}
.product-accordion .drawer-accordion-header.open .arrow {
  transform: rotate(180deg);
}

.product-accordion .drawer-accordion-header p {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
}

.product-accordion .drawer-accordion-content {
  padding: 0px;
  font-weight: 400;
  font-size: 18px;
}
.product-accordion .drawer-accordion-content.open {
  padding: 0px;
}
.accordion_container {
  margin-top: 16px;
}

@media (max-width: 600px) {
  .information-tabs-accordion .tabs_container {
    display: none;
  }
  .information-tabs-accordion .accordion_container {
    display: block;
  }
}
/* - - - -- tabs end */

.product_more_items {
  margin-top: 65px;
}
/* --- main info product start */

/* product page end */


.sup-details-item {
    display: flex;
    align-items: center;
}

.company-color {
    color: var(--company-main-color);
}

input[type="radio"] {
    accent-color: var(--company-main-color);
}



/*productPickup start*/

.card-info {
    border: solid 1px rgba(195, 209, 226, 0.6) !important;
    margin-bottom: 0px;
}

.product-pick .input-field {
    margin-top: 0.5rem;
}

.user-container {
    flex: 1 0 calc(50% - 10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

input.form-control {
    box-shadow: 0 3px 9px 0 rgba(169, 184, 200, 0.15);
}

.is-invalid {
    border-color: red !important;
    border: 1px solid red !important;
}

.is-valid {
    border-color: #09ad95 !important;
    border: 1px solid #09ad95 !important;
}

.img-card {
    max-width: 300px;
    max-height: 300px;
    min-width: 150px;
    min-height: 130px;
    padding: 5px;
    position: relative;
}

    .img-card img {
        width: 100%;
        object-fit: cover;
        height: 100%;
    }

.row {
    margin-right: 0;
    margin-left: 0;
}

.custom-error-message {
    display: none;
    align-items: center;
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.shipment {
    flex: 1 0 calc(50% - 10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    div.input-field-container {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 1.25rem !important;
    }

    .hor-content .container {
        padding-top: 0px;
    }

    .user-container {
        margin-top: 20px;
        flex: 1 0 calc(100% - 10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .input-field {
        width: 100%;
    }

    .shipment {
        flex: 1 0 calc(100% - 10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}


/*productPIckup end*/



/*productCardInfo start*/
.page {
    padding: 0px;
}

.header-with-bubbles {
    height: auto !important;
}

.app-content.hor-content {
    margin-top: 10px !important;
    margin-top: 0px;
    height: calc(100vh - 162px);
    overflow-y: scroll;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

strong, b {
    font-weight: 600 !important;
}

.select2-container {
    min-width: 100%;
}

input.form-control {
    box-shadow: 0 3px 9px 0 rgba(169, 184, 200, 0.15);
}

.product-card-info .input-field {
    margin-top: 0.5rem;
}

.img-card {
    max-width: 300px;
    max-height: 300px;
    min-width: 150px;
    min-height: 130px;
    padding: 5px;
    position: relative;
}

    .img-card img {
        width: 100%;
        object-fit: cover;
        height: 100%;
    }

.card-info {
    border: solid 1px rgba(195, 209, 226, 0.6) !important;
    margin-bottom: 0px;
}

.image-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.collapse-container {
    border-top: 1px solid lightgray;
}

i.collapse-down-icon {
    margin: 12px -40px;
}

.col-12, .col-md-6 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}


.user-container {
    flex: 1 0 calc(50% - 10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-wrap-container {
    padding: 8px 12px;
}

@media screen and (max-width: 1329px) {
    .app-content.hor-content {
        margin-top: 10px !important;
        height: calc(100vh - 222px);
    }
}

@media screen and (max-width: 992px) {
    .app-content.hor-content {
        margin-top: 10px !important;
        height: calc(100vh - 162px);
    }
}

@media screen and (max-width: 767px) {
    div.input-field-container {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 1.25rem !important;
    }

    .hor-content .container {
        padding-top: 0px;
    }

    .user-container {
        margin-top: 20px;
    }

    .input-field {
        width: 100%;
    }
}

.top-close-block {
    border-bottom: 1px solid #dfdede;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.top-close-btn {
    font-size: 18px;
    padding: 7px 25px 8px;
    width: 200px;
}

.modal-footer {
    justify-content: center;
}

.modal-title h5 {
    font-weight: 700;
    font-size: 20px;
}

@keyframes horizontal-shaking {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(5px);
    }

    50% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

.toast-header {
    justify-content: end;
}

.toast-body {
    display: flex;
    justify-content: center;
}
/*productCardInfo end*/



/* shop category page start*/
.category-name {
    padding: 45px 155px 30px 155px;
    color: var(--company-main-color);
    font-size: 30px;
    font-weight: 600;
    line-height: 34px;
}

.products-items {
    padding: 10px 155px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(208px, 1fr));
    grid-gap: 36px;
}

.product-item {
    /* padding: 10px; */
    cursor: pointer;
    border-radius: 25px;
    overflow: hidden;
    width: 208px;
    background-color: white;
    height: 262px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 400px) {
    .category-name {
        padding: 30px 10px;
        font-size: 28px;
    }

    .products-items {
        padding: 10px 3px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        grid-gap: 5px;
    }

    .product-item {
        padding: 0px;
        cursor: pointer;
        border-radius: 25px;
        overflow: hidden;
        width: 160px;
        background-color: white;
        height: 262px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 1024px) {
    .category-name {
        padding: 30px 10px;
        font-size: 28px;
    }

    .products-items {
        padding: 5px 20px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    }

    .product-item {
        padding: 0px;
        cursor: pointer;
        border-radius: 25px;
        overflow: hidden;
        width: 165px;
        background-color: white;
        height: 262px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
}
/* shop category page end */


.copyCoupon {
    cursor: pointer;
    
}
.floating-btn {
    /*display: none;*/

    position: fixed; /* Keeps it in the same position as you scroll */
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    z-index: 100;
}

.order-summary-body{
    text-align:center;
}


.contact-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0px 40px 0px;
    gap: 10px;
    border-radius: 25px 0px 0px 0px;
    box-shadow: 19px 19px 40px 0px #0000001A;
}
.contact-us-header {
    font-size: 36px;
    font-weight: 700;
    line-height: 52.88px;
    text-align: center;
}
.contact-us-subheader {
    font-size: 20px;
    font-weight: 400;
    line-height: 29.38px;
    text-align: center;
}
.contact-us-label {
    
    font-size: 16px;
    font-weight: 300;
    line-height: 23.5px;
    text-align: right;
}
.contact-us-form {
    display: flex;
}
.contact-us-form div input {
    width: 300px;
    height: 45px;
    gap: 0px;
    border-radius: 5px;
    /*border: 1px 0px 0px 0px;*/
    /*opacity: 0px;*/
}
.contact-us-footer {
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:960px;
}
.contact-us-footer button {
    width: 200px;
    height: 50px;
    padding: 0px 12px 0px 12px;
    gap: 10px;
    border-radius: 45px;
}
.contact-us-section{
    display:flex;
    padding: 15px 15px;
    flex-direction:column;
    gap:10px;
}
.contact-us-success{
    display:none;
}


.contact-us-cb-wrapper {
    display: flex;
}

.contact-us-cb {
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #f0f0f0; /* Default background color */
    border: 1px solid #ccc;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.contact-us-cb:checked {
    background-color: var(--company-main-color);
}

.contact-us-cb:checked::after {
    content: '✔'; /* Unicode character for checkmark */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: white; /* Color of the checkmark */
}

.contact-us-success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-info-button-wrapper {
    display: flex;
}

.main-info-button-wrapper-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 900px) {
    .contact-us-form {
        flex-direction: column;
    }
    .contact-us-footer {
        width: 100%;
        padding: 0px 20px;
    }
    .contact-us-success-content {
        height: 238px;
    }

    .main-info-button-wrapper{
        display:block;
    }
}
@media (max-width: 600px) {
    .contact-us-form {
        flex-direction: column;
    }
    .contact-us-footer {
        width: 100%;
        padding: 0px 20px;
    }
    .contact-us-success-content {
        height: 238px;
    }
    .main-info-button-wrapper {
        display: block;
    }
}
