@media only screen and (max-width: 1150px) and (min-width: 768px) {
  .top-container-and-header .header .navbar {
    display: none;
  }
  .top-container-and-header .header .right {
    display: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .top-container-and-header .header .right-responsive {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
  }
  .top-container-and-header .header .navbar-icon-open {
    display: block !important;
    width: 35px;
    height: 35px;
    position: relative;
    left: 10px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.1s ease-out;
    color: white;
  }
  .top-container-and-header .close_menu_icon {
    display: block !important;
    width: 35px;
    height: 35px;
    position: relative;
    left: 10px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.1s ease-out;
    color: black;
  }
  .top-container-and-header .header .navbar-icon-open:hover {
    color: #a7a1a1;
  }
  .top-container-and-header .header .navbar-icon-open:active {
    transform: translateY(2px);
  }
  .top-container-and-header .close_menu_icon:hover {
    color: #a7a1a1;
    transform: rotate(30deg);
  }
  .top-container-and-header .header {
    justify-content: space-between;
  }
  .top-container-and-header .header .right-responsive .right-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .top-container-and-header .header .right-responsive .right-content #search_icon-responsive {
    cursor: pointer;
    transition: 0.1s ease-out;
  }
  .top-container-and-header .header .right-responsive .right-content #search_icon-responsive:hover {
    transform: scale(1.1);
  }
  .top-container-and-header .header .right-responsive .right-content #search_icon-responsive:active {
    transform: translateY(1px);
  }
  .top-container-and-header .header .right-responsive .right-content #search_input-responsive {
    border: none;
    outline: none;
    padding: 5px;
    border-radius: 3px;
    background-color: transparent;
    border: 1px solid #ddd;
    color: #fff;
    transition: 0.2s ease-out;
    animation: inputanim 0.3s ease-out forwards normal;
  }
  @keyframes inputanim {
    from {
      transform: translateY(-5rem);
    }
    to {
      transform: translateY(0);
    }
  }
  .top-container-and-header .header .right-responsive .right-content #search-responsive {
    padding: 3px 10px;
    border: 1px solid rgba(221, 221, 221, 0.662745098);
    color: rgb(206, 198, 255);
    font-weight: 500;
    outline: none;
    border-radius: 3px;
    transition: 0.1s ease-out;
    cursor: pointer;
    background-color: transparent;
  }
  .top-container-and-header .header .right-responsive .right-content #search-responsive:hover {
    color: #fff;
  }
  .top-container-and-header .header .right-responsive .right-content #search-responsive:active {
    transform: translateY(2px);
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language {
    position: relative;
    display: inline-block;
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language .dropbtn {
    cursor: pointer;
    transition: 0.1s ease-out;
    background: rgba(255, 255, 255, 0.2392156863);
    color: white;
    padding: 7px 15px;
    border-radius: 2px;
    font-size: 16px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language .dropbtn img {
    position: relative;
    left: 5px;
    transition: 0.1s ease-out;
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language .dropdown-content {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 67px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language .dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language .dropdown-content a:hover {
    background-color: #ddd;
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language:hover .dropdown-content {
    display: block;
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language:hover .dropbtn img {
    transform: rotate(90deg);
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language:hover .dropbtn {
    background-color: rgb(134, 134, 134);
    color: #fff;
  }
  .top-container-and-header .menu_responsive {
    box-shadow: 0px 0px 10px 0px rgba(252, 169, 255, 0.459);
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 20000000;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: rgb(255, 255, 255);
    background: linear-gradient(121deg, rgb(255, 255, 255) 2%, rgb(193, 159, 186) 78%, rgb(175, 175, 175) 100%);
    animation: opened_menu 0.3s ease-out forwards normal;
  }
  @keyframes opened_menu {
    from {
      transform: translateY(-20rem);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .top-container-and-header .menu_responsive .header-menu-responsive {
    width: 100%;
    padding: 5px 50px;
    padding-top: 30px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .top-container-and-header .menu_responsive .header-menu-responsive .logo-wrapper-responsive {
    cursor: pointer;
    transition: 0.1s ease-out;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
  }
  .top-container-and-header .menu_responsive .header-menu-responsive .logo-wrapper-responsive img {
    width: 100%;
    height: 100%;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 120px;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.1s ease-out;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive a:hover {
    color: rgb(255, 0, 170);
  }
  .top-container-and-header .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    position: relative;
    display: inline-block;
    padding-top: 20px;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropbtn {
    cursor: pointer;
    transition: 0.1s ease-out;
    background: rgba(255, 255, 255, 0.2392156863);
    color: #000000;
    padding: 7px 15px;
    border-radius: 2px;
    font-size: 16px;
    border: 1px solid rgba(48, 48, 48, 0.3137254902);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropbtn .down-lang {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    position: relative;
    left: 5px;
    transition: 0.1s ease-out;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 70px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content a:hover {
    background-color: #ddd;
  }
  .top-container-and-header .menu_responsive .dropdown-language-menu-responsive:hover .dropdown-content {
    display: block;
  }
  .top-container-and-header .menu_responsive .dropdown-language-menu-responsive:hover .dropbtn .down-lang {
    transform: rotate(90deg);
  }
  .top-container-and-header .menu_responsive .dropdown-language-menu-responsive:hover .dropbtn {
    background-color: rgb(134, 134, 134);
    color: #fff;
  }
}
@media only screen and (max-width: 768px) and (min-width: 300px) {
  .top-container-and-header .header .logo {
    justify-content: flex-start;
  }
  .top-container-and-header .header .navbar {
    display: none;
  }
  .top-container-and-header .header .right {
    display: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .top-container-and-header .header .right-responsive {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
  }
  .top-container-and-header .header .navbar-icon-open {
    display: block !important;
    width: 35px;
    height: 35px;
    position: relative;
    left: 10px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.1s ease-out;
    color: white;
  }
  .top-container-and-header .close_menu_icon {
    display: block !important;
    width: 35px;
    height: 35px;
    position: relative;
    left: 10px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.1s ease-out;
    color: black;
  }
  .top-container-and-header .header .navbar-icon-open:hover {
    color: #a7a1a1;
  }
  .top-container-and-header .header .navbar-icon-open:active {
    transform: translateY(2px);
  }
  .top-container-and-header .close_menu_icon:hover {
    color: #a7a1a1;
    transform: rotate(30deg);
  }
  .top-container-and-header .header {
    justify-content: space-between;
  }
  .top-container-and-header .header .right-responsive .right-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .top-container-and-header .header .right-responsive .right-content #search_icon-responsive {
    cursor: pointer;
    transition: 0.1s ease-out;
  }
  .top-container-and-header .header .right-responsive .right-content #search_icon-responsive:hover {
    transform: scale(1.1);
  }
  .top-container-and-header .header .right-responsive .right-content #search_icon-responsive:active {
    transform: translateY(1px);
  }
  .top-container-and-header .header .right-responsive .right-content #search_input-responsive {
    border: none;
    outline: none;
    padding: 5px;
    border-radius: 3px;
    background-color: transparent;
    border: 1px solid #ddd;
    color: #fff;
    transition: 0.2s ease-out;
    animation: inputanim 0.3s ease-out forwards normal;
  }
  @keyframes inputanim {
    from {
      transform: translateY(-5rem);
    }
    to {
      transform: translateY(0);
    }
  }
  .top-container-and-header .header .right-responsive .right-content #search-responsive {
    padding: 3px 10px;
    border: 1px solid rgba(221, 221, 221, 0.662745098);
    color: rgb(206, 198, 255);
    font-weight: 500;
    outline: none;
    border-radius: 3px;
    transition: 0.1s ease-out;
    cursor: pointer;
    background-color: transparent;
  }
  .top-container-and-header .header .right-responsive .right-content #search-responsive:hover {
    color: #fff;
  }
  .top-container-and-header .header .right-responsive .right-content #search-responsive:active {
    transform: translateY(2px);
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language {
    position: relative;
    display: inline-block;
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language .dropbtn {
    cursor: pointer;
    transition: 0.1s ease-out;
    background: rgba(255, 255, 255, 0.2392156863);
    color: white;
    padding: 7px 15px;
    border-radius: 2px;
    font-size: 16px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language .dropbtn img {
    position: relative;
    left: 5px;
    transition: 0.1s ease-out;
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language .dropdown-content {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 67px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language .dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language .dropdown-content a:hover {
    background-color: #ddd;
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language:hover .dropdown-content {
    display: block;
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language:hover .dropbtn img {
    transform: rotate(90deg);
  }
  .top-container-and-header .header .right-responsive .right-content .dropdown-language:hover .dropbtn {
    background-color: rgb(134, 134, 134);
    color: #fff;
  }
  .top-container-and-header .menu_responsive {
    box-shadow: 0px 0px 10px 0px rgba(252, 169, 255, 0.459);
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 20000000;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: rgb(255, 255, 255);
    background: linear-gradient(121deg, rgb(255, 255, 255) 2%, rgb(193, 159, 186) 78%, rgb(175, 175, 175) 100%);
    animation: opened_menu 0.3s ease-out forwards normal;
  }
  @keyframes opened_menu {
    from {
      transform: translateY(-20rem);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .top-container-and-header .menu_responsive .header-menu-responsive {
    width: 100%;
    padding: 5px 50px;
    padding-top: 30px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .top-container-and-header .menu_responsive .header-menu-responsive .logo-wrapper-responsive {
    cursor: pointer;
    transition: 0.1s ease-out;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
  }
  .top-container-and-header .menu_responsive .header-menu-responsive .logo-wrapper-responsive img {
    width: 100%;
    height: 100%;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 120px;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.1s ease-out;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive a:hover {
    color: rgb(255, 0, 170);
  }
  .top-container-and-header .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    position: relative;
    display: inline-block;
    padding-top: 20px;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropbtn {
    cursor: pointer;
    transition: 0.1s ease-out;
    background: rgba(255, 255, 255, 0.2392156863);
    color: #000000;
    padding: 7px 15px;
    border-radius: 2px;
    font-size: 16px;
    border: 1px solid rgba(48, 48, 48, 0.3137254902);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropbtn .down-lang {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    position: relative;
    left: 5px;
    transition: 0.1s ease-out;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 70px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
  }
  .top-container-and-header .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content a:hover {
    background-color: #ddd;
  }
  .top-container-and-header .menu_responsive .dropdown-language-menu-responsive:hover .dropdown-content {
    display: block;
  }
  .top-container-and-header .menu_responsive .dropdown-language-menu-responsive:hover .dropbtn .down-lang {
    transform: rotate(90deg);
  }
  .top-container-and-header .menu_responsive .dropdown-language-menu-responsive:hover .dropbtn {
    background-color: rgb(134, 134, 134);
    color: #fff;
  }
}
@media only screen and (max-width: 1150px) and (min-width: 768px) {
  .top-container-about-us .header .navbar {
    display: none;
  }
  .top-container-about-us .header .right {
    display: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .top-container-about-us .header .right-responsive {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
  }
  .top-container-about-us .header .navbar-icon-open {
    display: block !important;
    width: 35px;
    height: 35px;
    position: relative;
    left: 10px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.1s ease-out;
    color: white;
  }
  .top-container-about-us .close_menu_icon {
    display: block !important;
    width: 35px;
    height: 35px;
    position: relative;
    left: 10px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.1s ease-out;
    color: black;
  }
  .top-container-about-us .header .navbar-icon-open:hover {
    color: #a7a1a1;
  }
  .top-container-about-us .header .navbar-icon-open:active {
    transform: translateY(2px);
  }
  .top-container-about-us .close_menu_icon:hover {
    color: #a7a1a1;
    transform: rotate(30deg);
  }
  .top-container-about-us .header {
    justify-content: space-between;
  }
  .top-container-about-us .header .right-responsive .right-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .top-container-about-us .header .right-responsive .right-content #search_icon-responsive {
    cursor: pointer;
    transition: 0.1s ease-out;
  }
  .top-container-about-us .header .right-responsive .right-content #search_icon-responsive:hover {
    transform: scale(1.1);
  }
  .top-container-about-us .header .right-responsive .right-content #search_icon-responsive:active {
    transform: translateY(1px);
  }
  .top-container-about-us .header .right-responsive .right-content #search_input-responsive {
    border: none;
    outline: none;
    padding: 5px;
    border-radius: 3px;
    background-color: transparent;
    border: 1px solid #ddd;
    color: #fff;
    transition: 0.2s ease-out;
    animation: inputanim 0.3s ease-out forwards normal;
  }
  @keyframes inputanim {
    from {
      transform: translateY(-5rem);
    }
    to {
      transform: translateY(0);
    }
  }
  .top-container-about-us .header .right-responsive .right-content #search-responsive {
    padding: 3px 10px;
    border: 1px solid rgba(221, 221, 221, 0.662745098);
    color: rgb(206, 198, 255);
    font-weight: 500;
    outline: none;
    border-radius: 3px;
    transition: 0.1s ease-out;
    cursor: pointer;
    background-color: transparent;
  }
  .top-container-about-us .header .right-responsive .right-content #search-responsive:hover {
    color: #fff;
  }
  .top-container-about-us .header .right-responsive .right-content #search-responsive:active {
    transform: translateY(2px);
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language {
    position: relative;
    display: inline-block;
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language .dropbtn {
    cursor: pointer;
    transition: 0.1s ease-out;
    background: rgba(255, 255, 255, 0.2392156863);
    color: white;
    padding: 7px 15px;
    border-radius: 2px;
    font-size: 16px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language .dropbtn img {
    position: relative;
    left: 5px;
    transition: 0.1s ease-out;
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language .dropdown-content {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 67px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language .dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language .dropdown-content a:hover {
    background-color: #ddd;
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language:hover .dropdown-content {
    display: block;
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language:hover .dropbtn img {
    transform: rotate(90deg);
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language:hover .dropbtn {
    background-color: rgb(134, 134, 134);
    color: #fff;
  }
  .top-container-about-us .menu_responsive {
    box-shadow: 0px 0px 10px 0px rgba(252, 169, 255, 0.459);
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 20000000;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: rgb(255, 255, 255);
    background: linear-gradient(121deg, rgb(255, 255, 255) 2%, rgb(193, 159, 186) 78%, rgb(175, 175, 175) 100%);
    animation: opened_menu 0.3s ease-out forwards normal;
  }
  @keyframes opened_menu {
    from {
      transform: translateY(-20rem);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .top-container-about-us .menu_responsive .header-menu-responsive {
    width: 100%;
    padding: 5px 50px;
    padding-top: 30px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .top-container-about-us .menu_responsive .header-menu-responsive .logo-wrapper-responsive {
    cursor: pointer;
    transition: 0.1s ease-out;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
  }
  .top-container-about-us .menu_responsive .header-menu-responsive .logo-wrapper-responsive img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 120px;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.1s ease-out;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive a:hover {
    color: rgb(255, 0, 170);
  }
  .top-container-about-us .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    position: relative;
    display: inline-block;
    padding-top: 20px;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropbtn {
    cursor: pointer;
    transition: 0.1s ease-out;
    background: rgba(255, 255, 255, 0.2392156863);
    color: #000000;
    padding: 7px 15px;
    border-radius: 2px;
    font-size: 16px;
    border: 1px solid rgba(48, 48, 48, 0.3137254902);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropbtn .down-lang {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    position: relative;
    left: 5px;
    transition: 0.1s ease-out;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 70px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content a:hover {
    background-color: #ddd;
  }
  .top-container-about-us .menu_responsive .dropdown-language-menu-responsive:hover .dropdown-content {
    display: block;
  }
  .top-container-about-us .menu_responsive .dropdown-language-menu-responsive:hover .dropbtn .down-lang {
    transform: rotate(90deg);
  }
  .top-container-about-us .menu_responsive .dropdown-language-menu-responsive:hover .dropbtn {
    background-color: rgb(134, 134, 134);
    color: #fff;
  }
}
@media only screen and (max-width: 768px) and (min-width: 300px) {
  .top-container-about-us .header .logo {
    justify-content: flex-start;
  }
  .top-container-about-us .header .navbar {
    display: none;
  }
  .top-container-about-us .header .right {
    display: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .top-container-about-us .header .right-responsive {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
  }
  .top-container-about-us .header .navbar-icon-open {
    display: block !important;
    width: 35px;
    height: 35px;
    position: relative;
    left: 10px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.1s ease-out;
    color: white;
  }
  .top-container-about-us .close_menu_icon {
    display: block !important;
    width: 35px;
    height: 35px;
    position: relative;
    left: 10px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.1s ease-out;
    color: black;
  }
  .top-container-about-us .header .navbar-icon-open:hover {
    color: #a7a1a1;
  }
  .top-container-about-us .header .navbar-icon-open:active {
    transform: translateY(2px);
  }
  .top-container-about-us .close_menu_icon:hover {
    color: #a7a1a1;
    transform: rotate(30deg);
  }
  .top-container-about-us .header {
    justify-content: space-between;
  }
  .top-container-about-us .header .right-responsive .right-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .top-container-about-us .header .right-responsive .right-content #search_icon-responsive {
    cursor: pointer;
    transition: 0.1s ease-out;
  }
  .top-container-about-us .header .right-responsive .right-content #search_icon-responsive:hover {
    transform: scale(1.1);
  }
  .top-container-about-us .header .right-responsive .right-content #search_icon-responsive:active {
    transform: translateY(1px);
  }
  .top-container-about-us .header .right-responsive .right-content #search_input-responsive {
    border: none;
    outline: none;
    padding: 5px;
    border-radius: 3px;
    background-color: transparent;
    border: 1px solid #ddd;
    color: #fff;
    transition: 0.2s ease-out;
    animation: inputanim 0.3s ease-out forwards normal;
  }
  @keyframes inputanim {
    from {
      transform: translateY(-5rem);
    }
    to {
      transform: translateY(0);
    }
  }
  .top-container-about-us .header .right-responsive .right-content #search-responsive {
    padding: 3px 10px;
    border: 1px solid rgba(221, 221, 221, 0.662745098);
    color: rgb(206, 198, 255);
    font-weight: 500;
    outline: none;
    border-radius: 3px;
    transition: 0.1s ease-out;
    cursor: pointer;
    background-color: transparent;
  }
  .top-container-about-us .header .right-responsive .right-content #search-responsive:hover {
    color: #fff;
  }
  .top-container-about-us .header .right-responsive .right-content #search-responsive:active {
    transform: translateY(2px);
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language {
    position: relative;
    display: inline-block;
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language .dropbtn {
    cursor: pointer;
    transition: 0.1s ease-out;
    background: rgba(255, 255, 255, 0.2392156863);
    color: white;
    padding: 7px 15px;
    border-radius: 2px;
    font-size: 16px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language .dropbtn img {
    position: relative;
    left: 5px;
    transition: 0.1s ease-out;
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language .dropdown-content {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 67px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language .dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language .dropdown-content a:hover {
    background-color: #ddd;
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language:hover .dropdown-content {
    display: block;
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language:hover .dropbtn img {
    transform: rotate(90deg);
  }
  .top-container-about-us .header .right-responsive .right-content .dropdown-language:hover .dropbtn {
    background-color: rgb(134, 134, 134);
    color: #fff;
  }
  .top-container-about-us .menu_responsive {
    box-shadow: 0px 0px 10px 0px rgba(252, 169, 255, 0.459);
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 20000000;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: rgb(255, 255, 255);
    background: linear-gradient(121deg, rgb(255, 255, 255) 2%, rgb(193, 159, 186) 78%, rgb(175, 175, 175) 100%);
    animation: opened_menu 0.3s ease-out forwards normal;
  }
  @keyframes opened_menu {
    from {
      transform: translateY(-20rem);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .top-container-about-us .menu_responsive .header-menu-responsive {
    width: 100%;
    padding: 5px 50px;
    padding-top: 30px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .top-container-about-us .menu_responsive .header-menu-responsive .logo-wrapper-responsive {
    cursor: pointer;
    transition: 0.1s ease-out;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
  }
  .top-container-about-us .menu_responsive .header-menu-responsive .logo-wrapper-responsive img {
    width: 100%;
    height: 100%;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 120px;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.1s ease-out;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive a:hover {
    color: rgb(255, 0, 170);
  }
  .top-container-about-us .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    position: relative;
    display: inline-block;
    padding-top: 20px;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropbtn {
    cursor: pointer;
    transition: 0.1s ease-out;
    background: rgba(255, 255, 255, 0.2392156863);
    color: #000000;
    padding: 7px 15px;
    border-radius: 2px;
    font-size: 16px;
    border: 1px solid rgba(48, 48, 48, 0.3137254902);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropbtn .down-lang {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    position: relative;
    left: 5px;
    transition: 0.1s ease-out;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 70px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
  }
  .top-container-about-us .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content a:hover {
    background-color: #ddd;
  }
  .top-container-about-us .menu_responsive .dropdown-language-menu-responsive:hover .dropdown-content {
    display: block;
  }
  .top-container-about-us .menu_responsive .dropdown-language-menu-responsive:hover .dropbtn .down-lang {
    transform: rotate(90deg);
  }
  .top-container-about-us .menu_responsive .dropdown-language-menu-responsive:hover .dropbtn {
    background-color: rgb(134, 134, 134);
    color: #fff;
  }
}
@media only screen and (max-width: 1150px) and (min-width: 768px) {
  .header-brands .header .navbar {
    display: none;
  }
  .header-brands .header .right {
    display: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .header-brands .header .right-responsive {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
  }
  .header-brands .header .navbar-icon-open {
    display: block !important;
    width: 35px;
    height: 35px;
    position: relative;
    left: 10px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.1s ease-out;
    color: black;
  }
  .header-brands .close_menu_icon {
    display: block !important;
    width: 35px;
    height: 35px;
    position: relative;
    left: 10px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.1s ease-out;
    color: black;
  }
  .header-brands .header .navbar-icon-open:hover {
    color: #a7a1a1;
  }
  .header-brands .header .navbar-icon-open:active {
    transform: translateY(2px);
  }
  .header-brands .close_menu_icon:hover {
    color: #a7a1a1;
    transform: rotate(30deg);
  }
  .header-brands .header {
    justify-content: space-between;
  }
  .header-brands .header .right-responsive .right-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .header-brands .header .right-responsive .right-content #search_icon-responsive {
    cursor: pointer;
    transition: 0.1s ease-out;
  }
  .header-brands .header .right-responsive .right-content #search_icon-responsive:hover {
    transform: scale(1.1);
  }
  .header-brands .header .right-responsive .right-content #search_icon-responsive:active {
    transform: translateY(1px);
  }
  .header-brands .header .right-responsive .right-content #search_input-responsive {
    border: none;
    outline: none;
    padding: 5px;
    border-radius: 3px;
    background-color: transparent;
    border: 1px solid #838383;
    color: #000000;
    transition: 0.2s ease-out;
    animation: inputanim 0.3s ease-out forwards normal;
  }
  @keyframes inputanim {
    from {
      transform: translateY(-5rem);
    }
    to {
      transform: translateY(0);
    }
  }
  .header-brands .header .right-responsive .right-content #search-responsive {
    padding: 3px 10px;
    border: 1px solid rgba(82, 82, 82, 0.662745098);
    color: rgb(0, 0, 0);
    font-weight: 500;
    outline: none;
    border-radius: 3px;
    transition: 0.1s ease-out;
    cursor: pointer;
    background-color: transparent;
  }
  .header-brands .header .right-responsive .right-content #search-responsive:hover {
    color: #585858;
  }
  .header-brands .header .right-responsive .right-content #search-responsive:active {
    transform: translateY(2px);
  }
  .header-brands .header .right-responsive .right-content .dropdown-language {
    position: relative;
    display: inline-block;
  }
  .header-brands .header .right-responsive .right-content .dropdown-language .dropbtn {
    cursor: pointer;
    transition: 0.1s ease-out;
    background: rgba(255, 255, 255, 0.2392156863);
    color: white;
    padding: 7px 15px;
    border-radius: 2px;
    font-size: 16px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-brands .header .right-responsive .right-content .dropdown-language .dropbtn img {
    position: relative;
    left: 5px;
    transition: 0.1s ease-out;
  }
  .header-brands .header .right-responsive .right-content .dropdown-language .dropdown-content {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 67px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .header-brands .header .right-responsive .right-content .dropdown-language .dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
  }
  .header-brands .header .right-responsive .right-content .dropdown-language .dropdown-content a:hover {
    background-color: #ddd;
  }
  .header-brands .header .right-responsive .right-content .dropdown-language:hover .dropdown-content {
    display: block;
  }
  .header-brands .header .right-responsive .right-content .dropdown-language:hover .dropbtn img {
    transform: rotate(90deg);
  }
  .header-brands .header .right-responsive .right-content .dropdown-language:hover .dropbtn {
    background-color: rgb(134, 134, 134);
    color: #fff;
  }
  .header-brands .menu_responsive {
    box-shadow: 0px 0px 10px 0px rgba(252, 169, 255, 0.459);
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 20000000;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: rgb(255, 255, 255);
    background: linear-gradient(121deg, rgb(255, 255, 255) 2%, rgb(193, 159, 186) 78%, rgb(175, 175, 175) 100%);
    animation: opened_menu 0.3s ease-out forwards normal;
  }
  @keyframes opened_menu {
    from {
      transform: translateY(-20rem);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .header-brands .menu_responsive .header-menu-responsive {
    width: 100%;
    padding: 5px 50px;
    padding-top: 30px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-brands .menu_responsive .header-menu-responsive .logo-wrapper-responsive {
    cursor: pointer;
    transition: 0.1s ease-out;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
  }
  .header-brands .menu_responsive .header-menu-responsive .logo-wrapper-responsive img {
    width: 100%;
    height: 100%;
  }
  .header-brands .menu_responsive .content-menu-responsive {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 120px;
  }
  .header-brands .menu_responsive .content-menu-responsive a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.1s ease-out;
  }
  .header-brands .menu_responsive .content-menu-responsive a:hover {
    color: rgb(255, 0, 170);
  }
  .header-brands .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    position: relative;
    display: inline-block;
    padding-top: 20px;
  }
  .header-brands .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropbtn {
    cursor: pointer;
    transition: 0.1s ease-out;
    background: rgba(255, 255, 255, 0.2392156863);
    color: #000000;
    padding: 7px 15px;
    border-radius: 2px;
    font-size: 16px;
    border: 1px solid rgba(48, 48, 48, 0.3137254902);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-brands .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropbtn .down-lang {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    position: relative;
    left: 5px;
    transition: 0.1s ease-out;
  }
  .header-brands .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 70px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .header-brands .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
  }
  .header-brands .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content a:hover {
    background-color: #ddd;
  }
  .header-brands .menu_responsive .dropdown-language-menu-responsive:hover .dropdown-content {
    display: block;
  }
  .header-brands .menu_responsive .dropdown-language-menu-responsive:hover .dropbtn .down-lang {
    transform: rotate(90deg);
  }
  .header-brands .menu_responsive .dropdown-language-menu-responsive:hover .dropbtn {
    background-color: rgb(134, 134, 134);
    color: #fff;
  }
  .header-brands .header .right-responsive .right-content #search_input-responsive {
    color: black;
  }
}
@media only screen and (max-width: 768px) and (min-width: 300px) {
  .header-brands .header .logo {
    justify-content: flex-start;
  }
  .header-brands .header .navbar {
    display: none;
  }
  .header-brands .header .right {
    display: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .header-brands .header .right-responsive {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
  }
  .header-brands .header .navbar-icon-open {
    display: block !important;
    width: 35px;
    height: 35px;
    position: relative;
    left: 10px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.1s ease-out;
    color: black;
  }
  .header-brands .close_menu_icon {
    display: block !important;
    width: 35px;
    height: 35px;
    position: relative;
    left: 10px;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.1s ease-out;
    color: black;
  }
  .header-brands .header .navbar-icon-open:hover {
    color: #a7a1a1;
  }
  .header-brands .header .navbar-icon-open:active {
    transform: translateY(2px);
  }
  .header-brands .close_menu_icon:hover {
    color: #a7a1a1;
    transform: rotate(30deg);
  }
  .header-brands .header {
    justify-content: space-between;
  }
  .header-brands .header .right-responsive .right-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .header-brands .header .right-responsive .right-content #search_icon-responsive {
    cursor: pointer;
    transition: 0.1s ease-out;
  }
  .header-brands .header .right-responsive .right-content #search_icon-responsive:hover {
    transform: scale(1.1);
  }
  .header-brands .header .right-responsive .right-content #search_icon-responsive:active {
    transform: translateY(1px);
  }
  .header-brands .header .right-responsive .right-content #search_input-responsive {
    border: none;
    outline: none;
    padding: 5px;
    border-radius: 3px;
    background-color: transparent;
    border: 1px solid #ddd;
    color: #fff;
    transition: 0.2s ease-out;
    animation: inputanim 0.3s ease-out forwards normal;
  }
  @keyframes inputanim {
    from {
      transform: translateY(-5rem);
    }
    to {
      transform: translateY(0);
    }
  }
  .header-brands .header .right-responsive .right-content #search-responsive {
    padding: 3px 10px;
    border: 1px solid rgba(221, 221, 221, 0.662745098);
    color: rgb(206, 198, 255);
    font-weight: 500;
    outline: none;
    border-radius: 3px;
    transition: 0.1s ease-out;
    cursor: pointer;
    background-color: transparent;
  }
  .header-brands .header .right-responsive .right-content #search-responsive:hover {
    color: #fff;
  }
  .header-brands .header .right-responsive .right-content #search-responsive:active {
    transform: translateY(2px);
  }
  .header-brands .header .right-responsive .right-content .dropdown-language {
    position: relative;
    display: inline-block;
  }
  .header-brands .header .right-responsive .right-content .dropdown-language .dropbtn {
    cursor: pointer;
    transition: 0.1s ease-out;
    background: rgba(255, 255, 255, 0.2392156863);
    color: white;
    padding: 7px 15px;
    border-radius: 2px;
    font-size: 16px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-brands .header .right-responsive .right-content .dropdown-language .dropbtn img {
    position: relative;
    left: 5px;
    transition: 0.1s ease-out;
  }
  .header-brands .header .right-responsive .right-content .dropdown-language .dropdown-content {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 67px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .header-brands .header .right-responsive .right-content .dropdown-language .dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
  }
  .header-brands .header .right-responsive .right-content .dropdown-language .dropdown-content a:hover {
    background-color: #ddd;
  }
  .header-brands .header .right-responsive .right-content .dropdown-language:hover .dropdown-content {
    display: block;
  }
  .header-brands .header .right-responsive .right-content .dropdown-language:hover .dropbtn img {
    transform: rotate(90deg);
  }
  .header-brands .header .right-responsive .right-content .dropdown-language:hover .dropbtn {
    background-color: rgb(134, 134, 134);
    color: #fff;
  }
  .header-brands .header .right-responsive .right-content #search_input-responsive {
    width: 130px;
    color: black;
  }
  .header-brands .menu_responsive {
    box-shadow: 0px 0px 10px 0px rgba(252, 169, 255, 0.459);
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 20000000;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: rgb(255, 255, 255);
    background: linear-gradient(121deg, rgb(255, 255, 255) 2%, rgb(193, 159, 186) 78%, rgb(175, 175, 175) 100%);
    animation: opened_menu 0.3s ease-out forwards normal;
  }
  @keyframes opened_menu {
    from {
      transform: translateY(-20rem);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .header-brands .menu_responsive .header-menu-responsive {
    width: 100%;
    padding: 5px 50px;
    padding-top: 30px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-brands .menu_responsive .header-menu-responsive .logo-wrapper-responsive {
    cursor: pointer;
    transition: 0.1s ease-out;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
  }
  .header-brands .menu_responsive .header-menu-responsive .logo-wrapper-responsive img {
    width: 100%;
    height: 100%;
  }
  .header-brands .menu_responsive .content-menu-responsive {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 120px;
  }
  .header-brands .menu_responsive .content-menu-responsive a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.1s ease-out;
  }
  .header-brands .menu_responsive .content-menu-responsive a:hover {
    color: rgb(255, 0, 170);
  }
  .header-brands .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    position: relative;
    display: inline-block;
    padding-top: 20px;
  }
  .header-brands .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropbtn {
    cursor: pointer;
    transition: 0.1s ease-out;
    background: rgba(255, 255, 255, 0.2392156863);
    color: #000000;
    padding: 7px 15px;
    border-radius: 2px;
    font-size: 16px;
    border: 1px solid rgba(48, 48, 48, 0.3137254902);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-brands .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropbtn .down-lang {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    position: relative;
    left: 5px;
    transition: 0.1s ease-out;
  }
  .header-brands .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 70px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .header-brands .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
  }
  .header-brands .menu_responsive .content-menu-responsive .dropdown-language-menu-responsive .dropdown-content a:hover {
    background-color: #ddd;
  }
  .header-brands .menu_responsive .dropdown-language-menu-responsive:hover .dropdown-content {
    display: block;
  }
  .header-brands .menu_responsive .dropdown-language-menu-responsive:hover .dropbtn .down-lang {
    transform: rotate(90deg);
  }
  .header-brands .menu_responsive .dropdown-language-menu-responsive:hover .dropbtn {
    background-color: rgb(134, 134, 134);
    color: #fff;
  }
}
@media only screen and (max-width: 1150px) and (min-width: 968px) {
  .top-container-and-header .swiper .swiper-slide .swiper-content h1 {
    padding: 10px 62px;
  }
  .top-container-and-header .swiper .swiper-slide .swiper-content .learn-more-top-container {
    padding: 10px 62px;
  }
}
@media only screen and (max-width: 968px) and (min-width: 768px) {
  .top-container-and-header .swiper .swiper-slide .swiper-content h1 {
    padding: 10px 62px;
  }
  .top-container-and-header .swiper .swiper-slide .swiper-content .learn-more-top-container {
    padding: 10px 62px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 300px) {
  .top-container-and-header .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .top-container-and-header .header .logo img {
    width: 60%;
    height: 60%;
  }
  .top-container-and-header .swiper .swiper-slide .swiper-content h1 {
    padding: 0px 40px;
    font-size: 14px;
    line-height: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  .top-container-and-header .swiper .swiper-slide .swiper-content .learn-more-top-container {
    padding: 10px 40px;
  }
  .top-container-and-header .swiper .swiper-slide .swiper-content .learn-more-top-container a {
    padding: 8px 8px;
    font-size: 12px;
  }
  .top-container-and-header .swiper .swiper-slide .swiper-content {
    padding-top: 45px;
  }
}
@media only screen and (max-width: 968px) and (min-width: 568px) {
  .products {
    margin-top: 30px;
  }
  .products .top-title-products span {
    font-size: 25px;
  }
  .products .top-title-products a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 568px) and (min-width: 300px) {
  .products {
    margin-top: 30px;
  }
  .products .top-title-products span {
    font-size: 17px;
  }
  .products .top-title-products a {
    font-size: 11px;
  }
  .products .swiper .swiper-slide span {
    font-size: 15px;
  }
}
@media only screen and (max-width: 968px) and (min-width: 568px) {
  .about-us {
    flex-direction: column-reverse;
    margin-top: 75px;
  }
  .about-us .left {
    width: 100%;
  }
  .about-us .right {
    width: 100%;
  }
}
@media only screen and (max-width: 568px) and (min-width: 300px) {
  .about-us {
    flex-direction: column-reverse;
    margin-top: 75px;
  }
  .about-us .left {
    width: 100%;
  }
  .about-us .right {
    width: 100%;
  }
  .about-us .right span {
    font-size: 25px;
  }
  .about-us .right p {
    padding-right: 5px;
  }
}
@media only screen and (max-width: 1150px) and (min-width: 968px) {
  .our-brands {
    width: 80%;
  }
  .our-brands .boxes-our-brands {
    grid-template-columns: repeat(3, auto);
  }
  .our-brands .top-title-our-brands span {
    font-size: 25px;
  }
  .our-brands .top-title-our-brands a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 968px) and (min-width: 568px) {
  .our-brands {
    width: 80%;
    margin-top: 50px;
  }
  .our-brands .boxes-our-brands {
    grid-template-columns: repeat(2, auto);
    justify-items: center;
  }
  .our-brands .top-title-our-brands span {
    font-size: 25px;
  }
  .our-brands .top-title-our-brands a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 568px) and (min-width: 300px) {
  .our-brands {
    width: 80%;
    margin-top: 50px;
  }
  .our-brands .boxes-our-brands {
    grid-template-columns: repeat(1, auto);
    justify-items: center;
  }
  .our-brands .top-title-our-brands span {
    font-size: 17px;
  }
  .our-brands .top-title-our-brands a {
    font-size: 11px;
  }
}
@media only screen and (max-width: 1150px) and (min-width: 968px) {
  .footer .social {
    width: 85%;
  }
}
@media only screen and (max-width: 968px) and (min-width: 568px) {
  .footer .social {
    width: 85%;
  }
  .footer .header-footer {
    flex-direction: column;
    width: 100%;
  }
  .footer .header-footer .right {
    flex-direction: column;
  }
  .footer .header-footer .navbar {
    flex-direction: row;
  }
}
@media only screen and (max-width: 568px) and (min-width: 300px) {
  .footer .social {
    width: 85%;
    padding-left: 10px;
    justify-content: flex-start;
  }
  .footer .header-footer {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    padding: 0;
  }
  .footer .header-footer .logo {
    justify-content: flex-start;
  }
  .footer .header-footer .right {
    flex-direction: column;
  }
  .footer .header-footer .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .header-footer .navbar a {
    font-size: 14px;
    text-wrap: nowrap;
  }
  .footer .header-footer .logo img {
    width: 70%;
    height: 70%;
    padding-left: 20px;
  }
  .footer .contact .telephone,
  .footer .contact .mail,
  .footer .contact .location {
    padding-left: 10px;
  }
  .footer .contact .telephone span,
  .footer .contact .mail span,
  .footer .contact .location span {
    font-size: 12px;
  }
  .footer .contact .telephone .logo-wrap,
  .footer .contact .mail .logo-wrap,
  .footer .contact .location .logo-wrap {
    width: 20px;
    height: 20px;
  }
  .footer .bottom {
    padding-left: 10px;
  }
  .footer .bottom span {
    font-size: 10px;
  }
  .footer .bottom span a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1150px) and (min-width: 968px) {
  .text-container .texts {
    padding-left: 44px;
    padding-top: 120px;
    padding-right: 78px;
    padding-bottom: 56px;
  }
  .why-choose-us-container .why-choose-us {
    padding-left: 44px;
  }
  .why-choose-us-container .why-choose-us .right .choose-variant {
    padding-top: 35px;
  }
  .why-choose-us-container .why-choose-us .right .choose-variant * {
    font-size: 14.5px !important;
  }
  .top-container-about-us .background-image-container .text-content h1 {
    width: auto;
  }
  .top-container-about-us .background-image-container .text-content p {
    width: auto;
    padding: 50px;
  }
}
@media only screen and (max-width: 968px) and (min-width: 568px) {
  .text-container .texts {
    padding-left: 44px;
    padding-top: 45px;
    padding-right: 78px;
    padding-bottom: 56px;
  }
  .why-choose-us-container .why-choose-us {
    padding-left: 5px;
    flex-direction: column-reverse;
  }
  .why-choose-us-container .why-choose-us .left {
    width: 100%;
  }
  .why-choose-us-container .why-choose-us .right {
    width: 100%;
    padding-left: 10px;
  }
  .why-choose-us-container .why-choose-us .right h1 {
    font-size: 35px;
  }
  .why-choose-us-container .why-choose-us .right .choose-variant {
    padding-top: 35px;
  }
  .why-choose-us-container .why-choose-us .right .choose-variant * {
    font-size: 14.5px !important;
  }
  .top-container-about-us .background-image-container .text-content h1 {
    width: 90%;
    line-height: 33px;
    font-size: 25px;
  }
  .top-container-about-us .background-image-container .text-content p {
    width: auto;
    padding: 5px;
    margin-top: 5px;
    line-height: 20px;
    font-size: 13px;
    width: 90%;
  }
  .text-container .texts h1 {
    font-size: 25px;
    line-height: 33px;
  }
}
@media only screen and (max-width: 568px) and (min-width: 300px) {
  .text-container .texts {
    padding-left: 10px;
    padding-top: 45px;
    padding-right: 15px;
    padding-bottom: 40px;
  }
  .why-choose-us-container .why-choose-us {
    padding-left: 5px;
    flex-direction: column-reverse;
  }
  .why-choose-us-container .why-choose-us .left {
    width: 100%;
  }
  .why-choose-us-container .why-choose-us .right {
    width: 100%;
    padding-left: 10px;
  }
  .why-choose-us-container .why-choose-us .right h1 {
    font-size: 29px;
  }
  .why-choose-us-container .why-choose-us .right .choose-variant {
    padding-top: 35px;
  }
  .why-choose-us-container .why-choose-us .right .choose-variant * {
    font-size: 14.5px !important;
  }
  .top-container-about-us .background-image-container .text-content h1 {
    width: 90%;
    line-height: 28px;
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .top-container-about-us .background-image-container .text-content p {
    width: auto;
    padding: 5px;
    line-height: 20px;
    font-size: 13px;
    width: 90%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .text-container .texts h1 {
    font-size: 20px;
    line-height: 33px;
  }
  .text-container .texts p {
    font-size: 13px;
  }
  .top-container-about-us .background-image-container .text-content {
    top: 100px;
  }
}
@media only screen and (max-width: 1150px) and (min-width: 968px) {
  .product-container {
    flex-direction: column;
    margin-top: 0;
  }
  .product-container .left-filter-sidebar {
    width: 100%;
  }
  .product-container .right-content-sidebar {
    width: 100%;
  }
}
@media only screen and (max-width: 968px) and (min-width: 568px) {
  .product-container {
    flex-direction: column;
    padding: 30px;
    margin-top: 0;
  }
  .product-container .left-filter-sidebar {
    width: 100%;
  }
  .product-container .right-content-sidebar {
    width: 100%;
  }
}
@media only screen and (max-width: 568px) and (min-width: 300px) {
  .product-container {
    flex-direction: column;
    padding: 30px;
    margin-top: 0;
  }
  .product-container .left-filter-sidebar {
    width: 100%;
  }
  .product-container .right-content-sidebar {
    width: 100%;
  }
  .product-container .right-content-sidebar .list-items-container .box .box-product span {
    font-size: 16px;
  }
  .product-container .right-content-sidebar .list-items-container .box .box-product #new-notification {
    font-size: 16px;
  }
  .product-container .right-content-sidebar .list-items-container .box {
    grid-template-columns: repeat(1, auto);
  }
  .product-container .right-content-sidebar .header-right-content span {
    font-size: 13px;
    text-wrap: nowrap;
  }
  .product-container .right-content-sidebar .header-right-content .button {
    padding: 0 7px;
    font-size: 12px;
  }
  .product-container .right-content-sidebar .header-right-content .button img {
    left: 2px;
  }
  .product-container .right-content-sidebar .header-right-content .dropdown-content {
    min-width: 86px;
  }
}
@media only screen and (max-width: 968px) and (min-width: 768px) {
  .brands-container .boxes {
    grid-template-columns: repeat(3, 35%);
  }
}
@media only screen and (max-width: 768px) and (min-width: 568px) {
  .brands-container .boxes {
    grid-template-columns: repeat(3, 35%);
  }
  .brands-container h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 568px) and (min-width: 300px) {
  .brands-container .boxes {
    grid-template-columns: repeat(1, 100%);
  }
  .brands-container h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1150px) and (min-width: 968px) {
  .contact-us-container {
    padding-left: 68px;
    padding-right: 68px;
  }
}
@media only screen and (max-width: 968px) and (min-width: 568px) {
  .contact-us-container {
    padding-left: 68px;
    padding-right: 68px;
  }
  .contact-us-container .form-container .contact-form-container .contact-form {
    flex-direction: column;
    padding: 30px;
    padding-left: 0;
  }
  .contact-us-container .form-container .contact-form-container .contact-form .left-contact-information {
    width: 100%;
  }
  .contact-us-container .form-container .contact-form-container .contact-form .right-social {
    width: 100%;
    padding-top: 50px;
  }
  .contact-us-container .form-container .form {
    flex-direction: column;
    padding-left: 39px;
  }
  .contact-us-container .form-container .form .left {
    width: 100%;
    padding-top: 50px;
  }
  .contact-us-container .form-container .form .right {
    width: 100%;
  }
  .contact-us-container .form-container .form .left h1 {
    font-size: 25px;
  }
  .contact-us-container .form-container .form .left p {
    padding-top: 7px;
    font-size: 14px;
  }
  .contact-us-container h1 {
    font-size: 28px;
  }
  .contact-us-container #form-title {
    font-size: 24px;
  }
  .contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .tel span,
  .contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .mail span,
  .contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .location span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 568px) and (min-width: 300px) {
  .contact-us-container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .contact-us-container .form-container .contact-form-container .contact-form {
    flex-direction: column;
    padding: 30px;
    padding-left: 0;
  }
  .contact-us-container .form-container .contact-form-container .contact-form .left-contact-information {
    width: 100%;
  }
  .contact-us-container .form-container .contact-form-container .contact-form .right-social {
    width: 100%;
    padding-top: 50px;
  }
  .contact-us-container .form-container .form .left {
    width: 100%;
    padding-top: 50px;
  }
  .contact-us-container .form-container .form .right {
    width: 100%;
  }
  .contact-us-container .form-container .form .left h1 {
    font-size: 18px;
  }
  .contact-us-container .form-container .form .left p {
    padding-top: 7px;
    font-size: 12px;
  }
  .contact-us-container .form-container .form {
    flex-direction: column;
    padding-left: 29px;
    padding-bottom: 39px;
  }
  .contact-us-container .form-container .form .right .input-area {
    padding-left: 0;
  }
  .contact-us-container h1 {
    font-size: 28px;
    width: 90%;
    padding-left: 33px;
  }
  .contact-us-container #form-title {
    font-size: 28px;
    width: 90%;
    padding-left: 0;
  }
  .contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .tel span,
  .contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .mail span,
  .contact-us-container .form-container .contact-form-container .contact-form .left-contact-information .location span {
    font-size: 13px;
  }
  .contact-us-container .form-container .contact-form-container .contact-form .left-contact-information h4 {
    font-size: 15px;
  }
  .contact-us-container .form-container .contact-form-container .contact-form .right-social h4 {
    font-size: 15px;
  }
  .contact-us-container .form-container .form .right .input-area input {
    width: 240px;
  }
  .contact-us-container .form-container .form .right .input-area textarea {
    width: 240px;
  }
  .contact-us-container .form-container .form .right .submitting-btn button[type=submit] {
    width: 240px;
  }
  .contact-us-container .form-container .form .right .submitting-btn {
    width: 240px;
    padding-left: 0;
  }
}
@media only screen and (max-width: 1150px) and (min-width: 968px) {
  .inner-product-container {
    padding-left: 64px;
    padding-right: 24px;
  }
}
@media only screen and (max-width: 968px) and (min-width: 568px) {
  .inner-product-container {
    flex-direction: column-reverse;
    padding-left: 64px;
    padding-right: 24px;
  }
  .inner-product-container .left-product {
    width: 100%;
  }
  .inner-product-container .right-product {
    width: 100%;
  }
  .other-products .product-swiper {
    padding-left: 64px;
    padding-right: 64px;
  }
  .other-products .title-other-products {
    padding-left: 64px;
    padding-right: 64px;
    padding-top: 0;
  }
  .other-products .title-other-products h1 {
    font-size: 25px;
  }
  .other-products .product-swiper .swiper .swiper-slide span {
    font-size: 15px;
    padding-top: 12px;
    padding-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }
}
@media only screen and (max-width: 568px) and (min-width: 300px) {
  .inner-product-container {
    flex-direction: column-reverse;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 8px;
  }
  .inner-product-container .right-product h3 {
    font-size: 18px;
    line-height: 40px;
  }
  .inner-product-container .right-product p {
    font-size: 13px;
  }
  .inner-product-container .left-product {
    width: 100%;
  }
  .inner-product-container .right-product {
    width: 100%;
  }
  .other-products .title-other-products .buttons .swiper-button-next {
    right: 0;
  }
  .other-products .title-other-products .buttons .swiper-button-prev {
    left: -3rem;
  }
  .other-products .product-swiper {
    padding-left: 9px;
    padding-right: 9px;
  }
  .other-products .title-other-products {
    padding-left: 9px;
    padding-right: 9px;
    padding-top: 0;
  }
  .other-products .title-other-products h1 {
    font-size: 20px;
  }
  .other-products .product-swiper .swiper .swiper-slide span {
    font-size: 15px;
    padding-top: 12px;
    padding-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }
  .other-products .product-swiper {
    padding-bottom: 24px;
    padding-top: 26px;
  }
}/*# sourceMappingURL=responsive.css.map */