.no-scroll {
  overflow: hidden;
}
.hero_section_wrapper .bad-request,.hero_section_wrapper .public-error-notice{
    text-align:start !important;
}
.bad-request,.public-error-notice{
    color:red;
    text-align:center;
    margin-bottom:20px;
}
.hero_section_wrapper .success-message{
    text-align:start !important;
    color:white !important;
}
.success-message{
    color:green;
      text-align:center;
    margin-bottom:20px;
}
.section-padding {
  padding: 40px 0;
}
.section-title {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-bottom: 40px;
}
.not_main .section-title h3 {
  color: #000;
}
.section-title h3 {
  text-align: center;
  font-weight: bold;
  color: #fff;
}
.not_main .heading-divider {
  background-color: #000 !important;
}
.not_main .heading-divider::after {
  background-color: #fff;
}
.section-title .heading-divider {
  display: inline-block;
  position: relative;
  height: 4px;
  margin: 0 auto;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: #fff;
  width: 90px;
  overflow: hidden;
}
.section-title .heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: #157fff;
  -webkit-animation: 5s linear infinite heading-move;
  animation: 5s linear infinite heading-move;
}
@-webkit-keyframes heading-move {
  0%,
  100% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(85px);
  }
}
@keyframes heading-move {
  0%,
  100% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(85px);
  }
}
/*modal*/
.customModalContainer {
  position: fixed;
  height: 100vh;
  display: flex;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  align-items: center;
  z-index: 1000;
  padding: 50px 10px;
  background-color: rgba(0, 0, 0, 0.8);
  inset: 0;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.customModalContainer.show {
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
}
.customModal {
  max-width: 500px;
  border-radius: 10px;
  border: 1px solid #ddd;
  width: 100%;
  background-color: #fff;
}

.customModalHeader {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
}
.customModalHeader h4 {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
.customModalHeader button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}
.customModalHeader button svg {
  width: 16px;
  height: 16px;
  fill: #4e4e4e;
}
.customModalHeader button:hover svg {
  fill: black;
}
.custommodal-body {
  overflow-y: auto;
  padding: 20px;
  max-height: 350px;
}
/*modal*/
.tarrifs_form_wrappers {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.tarrifs_default {
  display: none;
}
.tarrifs_input_wrapper input {
  min-height: 30px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  width: 100%;
}
.tarrifs_input_wrapper button {
  border-radius: 10px;
  border: 1px solid #002952;
  background: #002952;
  color: #fff;
  outline: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  width: 100%;
  min-height: 35px;
  display: flex;
  font-weight: bold;
  align-items: center;
  justify-content: center;
}
.tarrifs_input_wrapper button:hover {
  background: transparent;
  color: #002952;
}
/*modal*/
/* header */
header {
  position: absolute;
  top: 0;
  width: 100%;
  min-height: 70px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 99;
}
header.header_sticky {
  position: fixed;
  top: 0;
  left: 0;
  animation: slideDown 0.5s ease-in-out;
  box-shadow: 0px 0px 10px rgba(42, 73, 151, 0.15);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}
.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_wrapper .nav_left a {
  display: block;
  width: 100%;
  height: 100%;
}
.header_wrapper .nav_left a img {
  max-width: 150px;
  height: auto;
}
.header_wrapper .nav_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav_right_list {
  display: none;
  align-items: center;
}
.nav_right_list li {
  padding: 0 20px;
}
.nav_right_list li a {
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.nav_right_list li a:hover {
  color: #157fff;
}
.language{
    display:flex;
    align-items:center;
    gap:10px;
}
.language a {
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s ease-in-out;
}
.language a:hover {
  background: #fff;
  color: #157fff;
}
.header_second .language a.active {
  color: #00aced;
  background: #000;
}
/* hamburger */
.hamburger_area {
  display: flex;
  margin-left: 10px;
  align-items: center;
}
.hamburger-icon {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  border: 0;
  outline: 0;
  row-gap: 8px;
  background-color: transparent;
}

.bar-1,
.bar-2,
.bar-3 {
  width: 100%;
  background: #fff;
  height: 2px;
  border-radius: 1px;
  transition: 0.5s;
}
.hamburger-icon .bar-2 {
  width: 50%;
}

.change .bar-1 {
  transform: rotate(-45deg) translate(-14px, 6px);
}

.change .bar-2 {
  opacity: 0;
}

.change .bar-3 {
  width: 100% !important;
  transform: rotate(45deg) translate(-6px, -1px);
}

/* all-sidebar */
#mobile-navbar {
  position: absolute;
  top: 65px;
  width: 100%;
  background-color: #000000bd;
  padding: 30px 0;
  left: 0;
  z-index: 88;
  right: 0;
  display: none;
  max-height: 420px;
  overflow-y: scroll;
}

.overlay {
  display: none;
  transition: 0.4s;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 65px;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
}
.overlay.active {
  display: block;
}

.mobile-navbar-list {
  padding: 0;
}

.mobile-navbar-list li {
  padding: 10px;
}

.mobile-navbar-list li a {
  color: #fff;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.mobile-navbar-list li a:hover {
  color: #00aced;
}

@media screen and (min-width: 992px) {
  .hamburger_area {
    display: none;
  }
  .nav_right_list {
    display: flex;
  }
}
/* header end */
/* hero section */

.hero_section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero_section img {
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  z-index: 1;
  height: 100%;
}
.hero_section_content {
  position: relative;
  z-index: 3;
}
.hero_section_content h1 {
  line-height: 1;
  font-size: 30px;
}
.modal_price_calc {
  margin-top: 40px;
}
.modal_price_calc_about {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal_price_calc button {
  background-color: #157fff;
  padding: 10px;
  color: #fff;
  max-width: 300px;
  font-size: 15px;
  min-height: 40px;
  text-transform: capitalize;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 30px;
  border: 2px dashed #157fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: 0.4s;
}

.modal_price_calc button:hover {
  transition: 0.4s;
  border: 2px dashed #157fff;
  background-color: #fff;
  color: #157fff;
}

.modal_price_calc button:active {
  background-color: #3f88e0;
}

/* second  area */
.not_main {
  background: #fcfcfc;
}
.header_second {
  background: #fff;
}
.header_second .nav_right_list li {
  padding: 0 10px;
}
.header_second .nav_right_list li a {
  color: #000;
  font-size:14px;
}
.header_second .nav_right_list li a:hover {
  color: #00aced;
}
.header_second .hamburger_area .hamburger-icon span {
  background: #000;
}

.header_second #mobile-navbar {
  background: #fff;
}
.header_second .mobile-navbar-list li a {
  color: #000;
}
.header_second .mobile-navbar-list li a:hover {
  color: #00aced;
}
.header_second .language a {
  border-color: #000;
  color: #000;
}
.header_second .language a:hover {
  color: #00aced;
  background: #000;
}
.header_second .overlay {
  background: #ffffff71;
}

/* hero section second */
.second_hero_section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.second_hero_section .row {
  align-items: center;
}
.second_hero_section img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1;
}
.second_hero_section:after {
  content: "";
  background: #00000046;
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
  z-index: 2;
}
.second_hero_section .hero_section_wrapper {
  position: relative;
  padding: 100px 0 80px;
  z-index: 3;
}
.second_hero_section article {
  margin-bottom: 20px;
}
.second_hero_section article h1 {
  line-height: 1.2;
  margin-bottom: 20px;
}
.second_hero_section article p {
  line-height: 1.2;
  hyphens: auto;
}
.form_container_second {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 100%;
}
.input_wrapper_second input {
  width: 100%;
  min-height: 40px;
  background-color: #fff;
  color: #000;
  padding: 10px;
  border: 1px solid #ddd;
  outline: none;
  border-radius: 10px;
}
.input_wrapper_second button {
  width: 100%;
  min-height: 40px;
  padding: 10px;
  cursor:pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0000FF;
  transition: 0.3s ease-in-out;
  border-radius: 20px;
  border: none;
}
.input_wrapper_second button:hover {
  background: #2068af;
  color: #fff;
}
@media screen and (min-width: 576px) {
  .form_container_second {
    width: 90%;
  }
}
@media screen and (min-width: 992px) {
  .form_container_second {
    width: 80%;
  }
}
/* hero section second */

/* advantages section */
.advantages_card {
  padding: 20px;
  border-radius: 20px;
  background:rgb(245 246 249 / 1);
}

.advantages_card article {
  margin-bottom: 30px;
}
.advantages_card article h4 {
  color: #000;
  margin-bottom: 10px;
  min-height:74px;
  font-size:1.2rem;
  display:flex;
  align-items:center;
  font-weight: bold;
}
.advantages_card article p {
  color: #000;
  line-height: 1.2;
  min-height: 100px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.advantages_card figure {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages_card figure img {
  max-width: 100%;
  height: 150px;
  margin: 0 auto;
}
/* advantages section */
/* order section */
.second_order_section .row {
  row-gap: 20px;
}
.order_box {
  border-radius: 20px;
}
.order_box_cols:nth-child(1) .order_box {
  background: rgb(245 246 249 / 1);
}
.order_box_cols:nth-child(2) .order_box {
  background: rgb(240 246 255 / 1);
}
.order_box_cols:nth-child(3) .order_box {
  background: rgb(242 232 217 / 1);
}
.order_box article {
  padding: 20px;
}
.order_box article h3 {
  color: #000;
  text-align: center;
  font-weight: bold;
  font-size:23px;
  margin-bottom: 20px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order_box article h6 {
  color: #000;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.order_box article button {
  min-height: 40px;
  border-radius: 20px;
  background: #0000FF;
  color: #fff;
  line-height: 1.2;
  font-weight: bold;
  width: 100%;
  border: none;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.order_box article button:hover {
  background: #0966c2;
}
.order_box article ul {
  margin: 20px 0;
  min-height: 270px;
  max-height: 300px;
  overflow-y: auto;
}
.order_box article ul li {
  color: #000;
  position: relative;
  line-height: 1.2;
  padding-left: 20px;
}
.order_box article ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  color: #404040;
}
.order_box article ul li:not(:last-child) {
  margin-bottom: 10px;
}
.order_box figure img {
  width: 100%;
  height: 200px;
}

.order_box article ul::-webkit-scrollbar {
  width: 2px;
}

.order_box article ul::-webkit-scrollbar-track {
  background: #3450cc49;
}

.order_box article ul::-webkit-scrollbar-thumb {
  background: #7b7b7c;
}
/* order section */


/* Answer question */
.answer_question_section .row {
  justify-content: center;
}
.answer-accordion .answer-accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.answer-accordion .answer-accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #0000FF;
}

.answer-accordion button {
  position: relative;
  display: block;
  text-align: left;
  cursor:pointer;
  width: 100%;
  padding: 1em 0;
  color: #000;
  font-size: 1.15rem;
  font-weight: bold;
  border: none;
  background: none;
  outline: none;
}

.answer-accordion button .answer-accordion-title {
  padding: 1em 1.5em 1em 0; 
}

.answer-accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.answer-accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.answer-accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.answer-accordion button[aria-expanded="true"] {
  color: #0000FF;
}
.answer-accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
.answer-accordion button[aria-expanded="true"] + .answer-accordion-content {
  opacity: 1;
  max-height:max-content;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.answer-accordion .answer-accordion-content ul {
    
    padding-left:20px;
}
.answer-accordion .answer-accordion-content ul li{
    color:#000;
    position:relative;
    list-style:dics !important;
}
.answer-accordion .answer-accordion-content ul li:not(:last-child){
    margin-bottom:15px;
}
.answer-accordion .answer-accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.answer-accordion .answer-accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  color: #000;
  margin: 2em 0;
  line-height: 1.2;
}
@media screen and (min-width:992px){
    .answer-accordion button .answer-accordion-title {
  display:inline-block;
  width:95%;
}
}
/* Answer question */
.call_action-wrapper {
  padding: 20px;
  background: #002952;
  border-radius: 20px;
}

.call_action-wrapper article h3 {
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: bold;
}
.call_action-wrapper article p {
  line-height: 1.2;
  font-size: 16px;
  hyphens: auto;
  padding-bottom: 20px;
}
.form_wrapper_call {
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.input_wrapper_call_action input {
  width: 100%;
  min-height: 45px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  background: #e4e4e4;
}
.input_wrapper_call_action button {
  min-height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: #fff;
  cursor:pointer;
  font-weight: bold;
  width: 100%;
  border: 2px dashed #002952;
  transition: 0.3s ease-in-out;
  background: #002952;
}
.input_wrapper_call_action button:hover {
  background: #fff;
  color: #002952;
}
@media screen and (min-width: 992px) {
  .call_action-wrapper {
    padding: 36px 24px;
  }
  .call_action-wrapper article {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .call_action-wrapper article h3 {
    margin-bottom: 0;
  }
  .form_wrapper_call {
    padding: 30px;
  }
}
/* Answer question */

.truth_card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
}

.truth_card img {
  width: 100%;
  transition: all 500ms ease;
  display: inline-block;
  max-width: 100%;
  position: absolute;
  inset: 0;
  height: 100%;
}
.truth_card article {
  text-align: center;
  display: flex;
  background: #00000046;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  transform: scale(0, 0);
  padding-left: 15px;
  z-index: 2;
  padding-right: 15px;
  width: 100%;
  transition: all 500ms ease;
}
.truth_card article h4 {
  display: block;
  line-height: 30px;
  color: #fff;
  font-weight: 500;
  transition: all 600ms ease;
}
.truth_card ul {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0px;
  z-index: 4;
  transition: all 500ms ease;
  visibility:hidden;
  overflow:hidden;
  opacity:0;
    bottom:0;
}

.truth_card ul li {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 60px;
  background: #fff;
  text-align: center;
  font-size: 18px;
  color: #a7a7a7;

}

.truth_card:hover .other_head{
    opacity:0;
    visibility:hidden;
}
.other_head {
    position:absolute;
    bottom:0;
    z-index:2;
    padding:10px;
    transition:.3s ease-in-out;
    opacity:1;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    visibility:visible;
    overflow:hidden;
}
.other_head h5{
    font-size:15px;
    color:#fff;
    text-align:center;
    line-height:1.2;
}
.truth_card ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.truth_card ul li a {
  color: #000;
}
.truth_card:hover ul {
  opacity:1;
  visibility:visible;
}
.truth_card:hover figure img {
  opacity: 0.35;
  transform: scale(1.05);
}
.truth_card:hover article {
  transform: scale(1, 1);
}

/*footer*/

/* footer */
footer {
  background: rgb(64 64 64 / 1);
}
.footer_head {
  padding: 30px 0;
}
.footer_head h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}
.footer_head article {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.lcd_contact_item h5 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}
.lcd_contact_item span,
.lcd_contact_item a {
  transition: 0.3s ease-in-out;
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}
.lcd_contact_item span:hover,
.lcd_contact_item a:hover {
  color: #03b5d2;
}
.lcd_mobile_app_grid {
  display: flex;
  flex-direction: unset !important;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lcd_mobile_app {
  width: 100%;
}
.lcd_mobile_app img {
  max-height: 150px;
  width: 100%;
}
.lcd_mobile_app a {
  width: 100%;
  height: 100%;
  display: block;
  margin-bottom: 20px;
}
.pargour_mobile_image {
  display: none;
}
.pargour_mobile_image img {
  width: auto;
  height: 400px;
  margin-top: -100px;
}
.footer_bottom_lcd {
  padding: 20px 0;
  border-top: 1px solid #ddd;
}
.footer_bottom_content {
  display: flex;
  justify-content: center;
}
.footer_bottom_content ul {
  display: flex;
  align-items: center;
}
.footer_bottom_content ul li:not(:first-child)::before {
  content: "";
  height: 10px;
  width: 2px;
  background: #dddddd6e;
  margin: 0 10px;
  display: inline-block;
}
.footer_bottom_content ul li a {
  color: #fff;
  font-size: 16px;
  transition: 0.3s ease-in-out;
}
.footer_bottom_content ul li a:hover {
  color: #0a80f7;
}
#footer_lcd_order-3 {
  display: none;
}
footer .row {
  row-gap: 20px;
}
.footer_bottom_lcd p {
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.footer_social_list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer_social_list li {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #242424;
  transition: background 0.3s ease-in-out;
}
.footer_social_list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.footer_social_list li a i {
  color: #f4f4f4;
  font-size: 20px;
  text-shadow: 1px 1px #080808;
  transition: all 0.3s ease 1s;
}

.footer_social_list li:nth-child(1):hover {
  background-color: #3b5998;
}

.footer_social_list li:nth-child(2):hover {
  background-color: #f62403;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.footer_social_list li:nth-child(3):hover {
  background-color: #0966c2;
}

.footer_social_list li:nth-child(4):hover {
  background-color: #00aced;
}

.footer_social_list li:nth-child(5):hover {
  background-color: #f70100;
}

@media screen and (min-width: 576px) {
  .lcd_mobile_app img {
    max-height: 150px;
    width: unset;
  }
  .lcd_mobile_app{
    width: unset;
  }
}
@media screen and (min-width: 992px) {
  .footer_bottom_lcd p {
    text-align: unset;
  }
  
  .footer_bottom_content {
    display: flex;
    justify-content: flex-end;
  }
  #footer_lcd_order-3 {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .pargour_mobile_image {
    display: flex;
    justify-content: flex-end;
  }
}

.own_swiper_nav.lock_own_nav{
    display:none !important;
}
.own_swiper_nav{
    display:flex;
    align-items:center;
    gap:10px;
    justify-content:center;
    margin-top:20px;
    width:100%;
}
.own_swiper_nav button{
    width:50px;
    height:50px;
    border:none;
    border-radius:20px;
    background:#000;
    outline:none;
    cursor:pointer;
    color:#fff; 
    transition:.3s ease-in-out;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.own_swiper_nav button:hover{
    background:rgba(0,0,0,0.5);
}
.own_swiper_nav button.swiper-button-disabled{
    background:rgba(0,0,0,0.5);
}